Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
pr40570.c
blob: 7c3f4d83b2e06b3d2eca1cfef1704a392fb5d2eb [
file
] [
log
] [
blame
]
extern
void
anything
(
int
);
static
int
foo
(
int
i
);
static
int
bar
(
int
i
)
{
foo
(
i
);
}
extern
int
j
;
static
int
foo
(
int
i
)
{
if
(
j
)
anything
(
j
);
return
bar
(
i
);
}
int
baz
()
{
foo
(
0
);
if
(
baz
())
return
1
;
return
0
;
}