Sign in
gnu
/
gcc.git
/
ab7c7b46c35ed1be68d4c020a2f20ee96f68b64b
/
.
/
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
;
}