diff options
Diffstat (limited to 'clang/test/CodeGen/2010-08-10-DbgConstant.c')
-rw-r--r-- | clang/test/CodeGen/2010-08-10-DbgConstant.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/clang/test/CodeGen/2010-08-10-DbgConstant.c b/clang/test/CodeGen/2010-08-10-DbgConstant.c new file mode 100644 index 0000000..5b8f064 --- /dev/null +++ b/clang/test/CodeGen/2010-08-10-DbgConstant.c @@ -0,0 +1,5 @@ +// RUN: %clang_cc1 -S -emit-llvm -g %s -o - | grep DW_TAG_variable + +static const unsigned int ro = 201; +void bar(int); +void foo() { bar(ro); } |