[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / CodeGen / merge-statics.c
blob4baf902488c531edc2599a4c6bb49f2fc8822f62
1 // RUN: %clang_cc1 < %s -emit-llvm | FileCheck %s
3 // The two decls for 'a' should merge into one llvm GlobalVariable.
5 struct s { int x; };
6 static struct s a;
8 struct s *ap1 = &a;
10 static struct s a = {
14 // CHECK-NOT: internal global
15 // CHECK: @a = internal global %struct.s { i32 10 }
16 // CHECK-NOT: internal-global