diff options
author | Eric Christopher <echristo@apple.com> | 2012-04-23 19:00:24 +0000 |
---|---|---|
committer | Eric Christopher <echristo@apple.com> | 2012-04-23 19:00:24 +0000 |
commit | 3cc207bbccbaedfdb94eb2532624fc065d675d99 (patch) | |
tree | e341b2017dbf388df79ff75f45e290302d2065fd /clang/test/CodeGenCXX/debug-info-nullptr.cpp | |
parent | 27deb265f9ccbc9dbc925a0ebb413eea2bbb165c (diff) | |
download | bcm5719-llvm-3cc207bbccbaedfdb94eb2532624fc065d675d99.tar.gz bcm5719-llvm-3cc207bbccbaedfdb94eb2532624fc065d675d99.zip |
Forward declarations should take a context. This helps the debugger
find forward declarations in the context that the actual definition
will occur.
rdar://11291658
llvm-svn: 155381
Diffstat (limited to 'clang/test/CodeGenCXX/debug-info-nullptr.cpp')
-rw-r--r-- | clang/test/CodeGenCXX/debug-info-nullptr.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/CodeGenCXX/debug-info-nullptr.cpp b/clang/test/CodeGenCXX/debug-info-nullptr.cpp index 5540a9217cb..4cc7e546d88 100644 --- a/clang/test/CodeGenCXX/debug-info-nullptr.cpp +++ b/clang/test/CodeGenCXX/debug-info-nullptr.cpp @@ -4,4 +4,4 @@ void foo() { decltype(nullptr) t = 0; } -// CHECK: !13 = metadata !{i32 {{.*}}, null, metadata !"nullptr_t", null, i32 0, i64 0, i64 0, i64 0, i32 0, i32 0} ; [ DW_TAG_unspecified_type ] +// CHECK: metadata !{i32 {{.*}}, null, metadata !"nullptr_t", null, i32 0, i64 0, i64 0, i64 0, i32 0, i32 0} ; [ DW_TAG_unspecified_type ] |