Sign in
gnu
/
gcc.git
/
refs/heads/master
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
20000205-1.c
blob: 9fd602c68e6ed0197fdaa3f65a26cbd485f3d398 [
file
] [
log
] [
blame
]
void
abort
(
void
);
void
exit
(
int
);
static
int
f
(
int
a
)
{
if
(
a
==
0
)
return
0
;
do
if
(
a
&
128
)
return
1
;
while
(
f
(
0
));
return
0
;
}
int
main
(
void
)
{
if
(
f
(~
128
))
abort
();
exit
(
0
);
}