diff options
author | Duncan P. N. Exon Smith <dexonsmith@apple.com> | 2014-12-15 19:10:08 +0000 |
---|---|---|
committer | Duncan P. N. Exon Smith <dexonsmith@apple.com> | 2014-12-15 19:10:08 +0000 |
commit | b3a66691f85944f8fa3399674d0882590bdcbcd3 (patch) | |
tree | 43f47c9a9ce233299866d90f25158abcabc103e0 /clang/test/CodeGenCXX/debug-info-line-if.cpp | |
parent | fcbc3cdf3c2cc9593d1ff2ba4823608e51dff74c (diff) | |
download | bcm5719-llvm-b3a66691f85944f8fa3399674d0882590bdcbcd3.tar.gz bcm5719-llvm-b3a66691f85944f8fa3399674d0882590bdcbcd3.zip |
IR: Make metadata typeless in assembly, clang side
Match LLVM changes from r224257.
llvm-svn: 224259
Diffstat (limited to 'clang/test/CodeGenCXX/debug-info-line-if.cpp')
-rw-r--r-- | clang/test/CodeGenCXX/debug-info-line-if.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/clang/test/CodeGenCXX/debug-info-line-if.cpp b/clang/test/CodeGenCXX/debug-info-line-if.cpp index bd963773252..46724311c75 100644 --- a/clang/test/CodeGenCXX/debug-info-line-if.cpp +++ b/clang/test/CodeGenCXX/debug-info-line-if.cpp @@ -48,8 +48,8 @@ int main() { // CHECK: br label // CHECK: br label {{.*}}, !dbg [[DBG4:!.*]] - // CHECK: [[DBG1]] = metadata !{i32 100, i32 0, metadata !{{.*}}, null} - // CHECK: [[DBG2]] = metadata !{i32 200, i32 0, metadata !{{.*}}, null} - // CHECK: [[DBG3]] = metadata !{i32 300, i32 0, metadata !{{.*}}, null} - // CHECK: [[DBG4]] = metadata !{i32 401, i32 0, metadata !{{.*}}, null} + // CHECK: [[DBG1]] = !{i32 100, i32 0, !{{.*}}, null} + // CHECK: [[DBG2]] = !{i32 200, i32 0, !{{.*}}, null} + // CHECK: [[DBG3]] = !{i32 300, i32 0, !{{.*}}, null} + // CHECK: [[DBG4]] = !{i32 401, i32 0, !{{.*}}, null} } |