diff options
Diffstat (limited to 'clang/test/CodeGenCXX/const-global-linkage.cpp')
-rw-r--r-- | clang/test/CodeGenCXX/const-global-linkage.cpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/clang/test/CodeGenCXX/const-global-linkage.cpp b/clang/test/CodeGenCXX/const-global-linkage.cpp new file mode 100644 index 0000000..d0a055b --- /dev/null +++ b/clang/test/CodeGenCXX/const-global-linkage.cpp @@ -0,0 +1,13 @@ +// RUN: %clang_cc1 -emit-llvm -o - %s | FileCheck %s + +const int x = 10; +const int y = 20; +// CHECK-NOT: @x +// CHECK: @_ZL1y = internal constant i32 20 +const int& b() { return y; } + +const char z1[] = "asdf"; +const char z2[] = "zxcv"; +// CHECK-NOT: @z1 +// CHECK: @_ZL2z2 = internal constant +const char* b2() { return z2; } |