Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
fp2-dev
/
platform
/
external
/
clang
/
1b497f26ab7861b22383b22f35cf799c0b312c9b
/
.
/
test
/
CodeGen
/
2002-05-23-StaticValues.c
blob: b8c25b73c71ff7e7b0f75829629084fe78729f4b [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 -emit-llvm %s -o /dev/null
/* Make sure the frontend is correctly marking static stuff as internal! */
int
X
;
static
int
Y
=
12
;
static
void
foo
(
int
Z
)
{
Y
=
Z
;
}
void
*
test
()
{
foo
(
12
);
return
&
Y
;
}