Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
pr84425.c
blob: 5d3d325aa2324f1fc306421cb50054d4c1bd24c1 [
file
] [
log
] [
blame
]
/* PR ipa/84425 */
void
bar
(
int
);
void
foo
(
int
x
)
{
if
(
x
<
5
)
bar
(
x
);
}
__attribute__
((
optimize
(
0
)))
void
bar
(
int
x
)
{
if
(
x
>
10
)
foo
(
x
);
}