diff options
author | Duncan P. N. Exon Smith <dexonsmith@apple.com> | 2015-01-14 22:28:03 +0000 |
---|---|---|
committer | Duncan P. N. Exon Smith <dexonsmith@apple.com> | 2015-01-14 22:28:03 +0000 |
commit | 8d3ef611cef5780f62480eb4d84915a635374f31 (patch) | |
tree | 9e69c814371810c5bc24071184e3ae088c10a030 /clang/test/CodeGenCXX/debug-info-line-if.cpp | |
parent | 9885469922266d43622af58871253fadfef42d48 (diff) | |
download | bcm5719-llvm-8d3ef611cef5780f62480eb4d84915a635374f31.tar.gz bcm5719-llvm-8d3ef611cef5780f62480eb4d84915a635374f31.zip |
IR: Move MDLocation into place (clang testcases)
Update testcases to match LLVM change in r226048.
llvm-svn: 226049
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 46724311c75..d0205af92bf 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]] = !{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} + // CHECK: [[DBG1]] = !MDLocation(line: 100, scope: !{{.*}}) + // CHECK: [[DBG2]] = !MDLocation(line: 200, scope: !{{.*}}) + // CHECK: [[DBG3]] = !MDLocation(line: 300, scope: !{{.*}}) + // CHECK: [[DBG4]] = !MDLocation(line: 401, scope: !{{.*}}) } |