freebsd-nq/test/CodeGenCXX/const-global-linkage.cpp

14 lines
321 B
C++
Raw Normal View History

2010-01-01 10:34:51 +00:00
// RUN: %clang_cc1 -emit-llvm -o - %s | FileCheck %s
2009-12-01 11:08:04 +00:00
const int x = 10;
const int y = 20;
// CHECK-NOT: @x
2010-02-16 09:31:36 +00:00
// CHECK: @_ZL1y = internal constant i32 20
2009-12-01 11:08:04 +00:00
const int& b() { return y; }
const char z1[] = "asdf";
const char z2[] = "zxcv";
// CHECK-NOT: @z1
2010-02-16 09:31:36 +00:00
// CHECK: @_ZL2z2 = internal constant
2009-12-01 11:08:04 +00:00
const char* b2() { return z2; }