Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
960116-1.c
blob: 6d7624ca1a19042bae3538a46a242768add3692d [
file
] [
log
] [
blame
]
static
inline
p
(
int
*
p
)
{
return
!((
long
)
p
&
1
);
}
int
f
(
int
*
q
)
{
if
(
p
(
q
)
&&
*
q
)
return
1
;
return
0
;
}
main
()
{
if
(
f
((
int
*)
0xffffffff
)
!=
0
)
abort
();
exit
(
0
);
}