Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
fp2-dev
/
platform
/
external
/
clang
/
e36c9abd383267775a5079166e5e02119866c129
/
.
/
test
/
CodeGen
/
merge-statics.c
blob: c442669e6422f74395fb671df93369ef1c1cc624 [
file
] [
log
] [
blame
]
// RUN: clang-cc < %s -emit-llvm | grep internal | count 1
// 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
};