Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
20000205-1.c
blob: b605b84b6b116f21c8001195e99eab90cd11d5f7 [
file
] [
log
] [
blame
]
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
);
}