diff options
author | Adrian Prantl <aprantl@apple.com> | 2016-12-16 04:26:15 +0000 |
---|---|---|
committer | Adrian Prantl <aprantl@apple.com> | 2016-12-16 04:26:15 +0000 |
commit | db4c86f953f139eaa75acdd58d5213be2f6fe65b (patch) | |
tree | 58051eff96dacd5d6979c5dccc86414048fec4a6 /clang/test/CodeGen/debug-info-static.c | |
parent | 74a835cda0b0ad6cc58cbecdec1def780b3a4264 (diff) | |
download | bcm5719-llvm-db4c86f953f139eaa75acdd58d5213be2f6fe65b.tar.gz bcm5719-llvm-db4c86f953f139eaa75acdd58d5213be2f6fe65b.zip |
Update for LLVM global variable debug info API change.
llvm-svn: 289921
Diffstat (limited to 'clang/test/CodeGen/debug-info-static.c')
-rw-r--r-- | clang/test/CodeGen/debug-info-static.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/clang/test/CodeGen/debug-info-static.c b/clang/test/CodeGen/debug-info-static.c index 0ebd6a626d8..016f1e6e6cc 100644 --- a/clang/test/CodeGen/debug-info-static.c +++ b/clang/test/CodeGen/debug-info-static.c @@ -2,7 +2,8 @@ // CHECK: @f.xyzzy = internal global i32 0, align 4, !dbg [[XYZZY:![0-9]+]] -// CHECK: [[XYZZY]] = distinct !DIGlobalVariable +// CHECK: [[XYZZY]] = !DIGlobalVariableExpression(var: [[VAR:.*]]) +// CHECK: [[VAR]] = distinct !DIGlobalVariable void f(void) { static int xyzzy; |