diff options
author | Duncan P. N. Exon Smith <dexonsmith@apple.com> | 2015-03-03 17:25:55 +0000 |
---|---|---|
committer | Duncan P. N. Exon Smith <dexonsmith@apple.com> | 2015-03-03 17:25:55 +0000 |
commit | f04be1fb3a9f4b8a7591824d6985556ac578e3cf (patch) | |
tree | 67c831ea44725cbc04fa0a14fbebea1f1f7aea56 /clang/test/CodeGenCXX/debug-info-method.cpp | |
parent | e274180f0efb5ff3358cf6076846b4cb326b2ed7 (diff) | |
download | bcm5719-llvm-f04be1fb3a9f4b8a7591824d6985556ac578e3cf.tar.gz bcm5719-llvm-f04be1fb3a9f4b8a7591824d6985556ac578e3cf.zip |
DebugInfo: Move new hierarchy into place (clang)
Update testcases for LLVM change in r231082 to use the new debug info
hierarchy.
llvm-svn: 231083
Diffstat (limited to 'clang/test/CodeGenCXX/debug-info-method.cpp')
-rw-r--r-- | clang/test/CodeGenCXX/debug-info-method.cpp | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/clang/test/CodeGenCXX/debug-info-method.cpp b/clang/test/CodeGenCXX/debug-info-method.cpp index bb69a651650..103a40241be 100644 --- a/clang/test/CodeGenCXX/debug-info-method.cpp +++ b/clang/test/CodeGenCXX/debug-info-method.cpp @@ -1,14 +1,16 @@ // RUN: %clang_cc1 -emit-llvm -triple %itanium_abi_triple -std=c++11 -g %s -o - | FileCheck %s -// CHECK: !"_ZTS1A"} ; [ DW_TAG_class_type ] [A] -// CHECK: !"{{.*}}\00_ZN1A3fooEiS_3$_0\00{{.*}}", {{.*}} [protected] -// CHECK: ![[THISTYPE:[0-9]+]] = {{.*}} ; [ DW_TAG_pointer_type ] {{.*}} [artificial] [from _ZTS1A] -// CHECK: [ DW_TAG_ptr_to_member_type ] [line {{[0-9]+}}, size {{[1-9][0-9]+}}, align -// CHECK: {{.*}}![[MEMFUNTYPE:[0-9]+]], !{{.*}}} ; [ DW_TAG_ptr_to_member_type ] {{.*}} [from ] -// CHECK: ![[MEMFUNTYPE]] = {{.*}}![[MEMFUNARGS:[0-9]+]], null, null, null} ; [ DW_TAG_subroutine_type ] {{.*}} [from ] +// CHECK: !MDCompositeType(tag: DW_TAG_class_type, name: "A",{{.*}} identifier: "_ZTS1A") +// CHECK: !MDSubprogram(name: "foo", linkageName: "_ZN1A3fooEiS_3$_0" +// CHECK-SAME: DIFlagProtected +// CHECK: ![[THISTYPE:[0-9]+]] = !MDDerivedType(tag: DW_TAG_pointer_type, baseType: !"_ZTS1A" +// CHECK-SAME: DIFlagArtificial +// CHECK: !MDDerivedType(tag: DW_TAG_ptr_to_member_type +// CHECK: !MDDerivedType(tag: DW_TAG_ptr_to_member_type, baseType: ![[MEMFUNTYPE:[0-9]+]] +// CHECK: ![[MEMFUNTYPE]] = !MDSubroutineType(types: ![[MEMFUNARGS:[0-9]+]]) // CHECK: ![[MEMFUNARGS]] = {{.*}}, ![[THISTYPE]], -// CHECK: !"0x101\00\00{{.*}}"{{.*}} DW_TAG_arg_variable -// CHECK: !"0x101\00\00{{.*}}"{{.*}} DW_TAG_arg_variable -// CHECK: !"0x101\00\00{{.*}}"{{.*}} DW_TAG_arg_variable +// CHECK: !MDLocalVariable(tag: DW_TAG_arg_variable +// CHECK: !MDLocalVariable(tag: DW_TAG_arg_variable +// CHECK: !MDLocalVariable(tag: DW_TAG_arg_variable union { int a; float b; |