bolt/deps/llvm-18.1.8/clang/test/CodeGen/merge-statics.c
2025-02-14 19:21:04 +01:00

16 lines
328 B
C

// RUN: %clang_cc1 < %s -emit-llvm | FileCheck %s
// The two decls for 'a' should merge into one llvm GlobalVariable.
struct s { int x; };
static struct s a;
struct s *ap1 = &a;
static struct s a = {
10
};
// CHECK-NOT: internal global
// CHECK: @a = internal global %struct.s { i32 10 }
// CHECK-NOT: internal-global