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/2010-07-23-DeclLoc.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/2010-07-23-DeclLoc.cpp')
-rw-r--r-- | clang/test/CodeGenCXX/2010-07-23-DeclLoc.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/clang/test/CodeGenCXX/2010-07-23-DeclLoc.cpp b/clang/test/CodeGenCXX/2010-07-23-DeclLoc.cpp index 56c364cb485..a1e1739ea77 100644 --- a/clang/test/CodeGenCXX/2010-07-23-DeclLoc.cpp +++ b/clang/test/CodeGenCXX/2010-07-23-DeclLoc.cpp @@ -1,9 +1,10 @@ // RUN: %clang_cc1 -emit-llvm -g %s -o - | FileCheck %s // Require the template function declaration refer to the correct filename. // First, locate the function decl in metadata, and pluck out the file handle: -// CHECK: !"0x2e\00extract_dwarf_data_from_header{{[^"]+}}", [[filehandle:![0-9]+]] +// CHECK: !MDSubprogram(name: "extract_dwarf_data_from_header +// CHECK-SAME: file: [[FILE:![0-9]+]] // Second: Require that filehandle refer to the correct filename: -// CHECK: [[filehandle]] = {{.*}}decl_should_be_here.hpp" +// CHECK: [[FILE]] = !MDFile(filename: "decl_should_be_here.hpp" typedef long unsigned int __darwin_size_t; typedef __darwin_size_t size_t; typedef unsigned char uint8_t; |