Sign in
llvm
/
clang
/
e8264bb9815647b4c6558aeb045c65965cdb26d3
/
.
/
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
;
}