brintos

brintos / llvm-project-archived public Read only

0
0
Text · 559 B · 9f4f95b Raw
12 lines · cpp
1// RUN: %clang_cc1 -fkeep-static-consts -emit-llvm %s -o - -triple=x86_64-unknown-linux-gnu | FileCheck %s2 3// CHECK: @_ZL7srcvers = internal constant [4 x i8] c"xyz\00", align 14// CHECK: @_ZL8srcvers2 = internal constant [4 x i8] c"abc\00", align 15// CHECK: @_ZL1N = internal constant i32 2, align 46// CHECK: @llvm.compiler.used = appending global [4 x ptr] [ptr @_ZL7srcvers, ptr @b, ptr @_ZL8srcvers2, ptr @_ZL1N], section "llvm.metadata"7 8static const char srcvers[] = "xyz";9extern const int b = 1;10const char srcvers2[] = "abc";11constexpr int N = 2;12