diff options
author | Eric Christopher <echristo@gmail.com> | 2013-01-16 01:22:32 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2013-01-16 01:22:32 +0000 |
commit | 91a3190a2817709911feecedf63657cc122a3e09 (patch) | |
tree | 0ef0d03150819f53612a58f22c330d6dc3283565 /clang/test/CodeGen/debug-info-static.c | |
parent | 4d23a4ae1f426bcf420943ba14c0e2f382b1f303 (diff) | |
download | bcm5719-llvm-91a3190a2817709911feecedf63657cc122a3e09.tar.gz bcm5719-llvm-91a3190a2817709911feecedf63657cc122a3e09.zip |
Collect both normal and static data members of a class in source
order. Describe static data members to metadata using new interfaces.
Part of PR14471.
Patch by Paul Robinson!
llvm-svn: 172591
Diffstat (limited to 'clang/test/CodeGen/debug-info-static.c')
-rw-r--r-- | clang/test/CodeGen/debug-info-static.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/CodeGen/debug-info-static.c b/clang/test/CodeGen/debug-info-static.c index e75d20fbacc..931c9e22afd 100644 --- a/clang/test/CodeGen/debug-info-static.c +++ b/clang/test/CodeGen/debug-info-static.c @@ -1,6 +1,6 @@ // RUN: %clang_cc1 -g -emit-llvm -o - %s | FileCheck %s -// CHECK: xyzzy} ; [ DW_TAG_variable ] +// CHECK: xyzzy, null} ; [ DW_TAG_variable ] void f(void) { static int xyzzy; |