Sign in
gnu
/
gcc.git
/
refs/heads/master
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
941025-1.c
blob: 013f113c2f2be93515ea29dbca344eba6ca4952a [
file
] [
log
] [
blame
]
void
abort
(
void
);
void
exit
(
int
);
long
f
(
x
,
y
)
long
x
,
y
;
{
return
(
x
>
1
)
?
y
:
(
y
&
1
);
}
int
main
(
void
)
{
if
(
f
(
2L
,
0xdecadeL
)
!=
0xdecadeL
)
abort
();
exit
(
0
);
}