Files
clang-p2996/llvm/test/tools/dsymutil/X86/submodules.m
Jonas Devlieghere a6ef1abc09 [dsymutil] Rename llvm-dsymutil -> dsymutil
Now that almost all functionality of Apple's dsymutil has been
upstreamed, the open source variant can be used as a drop in
replacement. Hence we feel it's no longer necessary to have the llvm
prefix.

Differential revision: https://reviews.llvm.org/D44527

llvm-svn: 327790
2018-03-18 11:38:41 +00:00

53 lines
1.7 KiB
Objective-C

/* Compile with:
cat >modules.modulemap <<EOF
module Parent {
module Child {
header "Child.h"
}
module Empty {
header "Empty.h"
}
}
EOF
clang -D CHILD_H -E -o Child.h submodules.m
touch empty.h
clang -cc1 -emit-obj -fmodules -fmodule-map-file=modules.modulemap \
-fmodule-format=obj -g -dwarf-ext-refs -fmodules-cache-path=. \
-fdisable-module-hash submodules.m -o 1.o
*/
// RUN: dsymutil -f -oso-prepend-path=%p/../Inputs/submodules \
// RUN: -y %p/dummy-debug-map.map -o - \
// RUN: | llvm-dwarfdump -v --debug-info - | FileCheck %s
// ---------------------------------------------------------------------
#ifdef CHILD_H
// ---------------------------------------------------------------------
// CHECK: DW_TAG_compile_unit
// CHECK-NOT: DW_TAG
// CHECK: DW_TAG_module
// CHECK-NEXT: DW_AT_name{{.*}}"Parent"
// CHECK: DW_TAG_module
// CHECK-NEXT: DW_AT_name{{.*}}"Child"
// CHECK: DW_TAG_structure_type
// CHECK-NOT: DW_TAG
// CHECK: DW_AT_name {{.*}}"PruneMeNot"
struct PruneMeNot;
// ---------------------------------------------------------------------
#else
// ---------------------------------------------------------------------
// CHECK: DW_TAG_compile_unit
// CHECK: DW_TAG_module
// CHECK-NEXT: DW_AT_name{{.*}}"Parent"
// CHECK: 0x0[[EMPTY:.*]]: DW_TAG_module
// CHECK-NEXT: DW_AT_name{{.*}}"Empty"
// CHECK: DW_AT_import {{.*}}0x{{0*}}[[EMPTY]]
@import Parent.Child;
@import Parent.Empty;
int main(int argc, char **argv) { return 0; }
#endif