Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
20040319-1.c
blob: 357932d9b247abd7db2f8f9e6343f2ba9f32eea5 [
file
] [
log
] [
blame
]
int
blah
(
int
zzz
)
{
int
foo
;
if
(
zzz
>=
0
)
return
1
;
foo
=
(
zzz
>=
0
?
(
zzz
)
:
-(
zzz
));
return
foo
;
}
main
()
{
if
(
blah
(-
1
)
!=
1
)
abort
();
else
exit
(
0
);
}