Sign in
cobalt
/
cobalt
/
dc98e529721071ac658df8d497cd103ceb8762c1
/
.
/
src
/
third_party
/
llvm-project
/
clang
/
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
;
}