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-fwd-ref.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-fwd-ref.cpp')
-rw-r--r-- | clang/test/CodeGenCXX/debug-info-fwd-ref.cpp | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/clang/test/CodeGenCXX/debug-info-fwd-ref.cpp b/clang/test/CodeGenCXX/debug-info-fwd-ref.cpp index c479506c61e..351dc0524e9 100644 --- a/clang/test/CodeGenCXX/debug-info-fwd-ref.cpp +++ b/clang/test/CodeGenCXX/debug-info-fwd-ref.cpp @@ -18,7 +18,8 @@ int main(int argc, char** argv) { // Make sure we have two DW_TAG_structure_types for baz and bar and no forward // references. -// CHECK-NOT: [fwd] -// CHECK: [ DW_TAG_structure_type ] [bar] -// CHECK: [ DW_TAG_structure_type ] [baz] -// CHECK-NOT: [fwd] +// CHECK-NOT: DIFlagFwdDecl +// CHECK: !MDCompositeType(tag: DW_TAG_structure_type, name: "bar" +// CHECK-NOT: DIFlagFwdDecl +// CHECK: !MDCompositeType(tag: DW_TAG_structure_type, name: "baz" +// CHECK-NOT: DIFlagFwdDecl |