Sign in
gnu
/
gcc.git
/
refs/heads/master
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
931228-1.c
blob: 01e52235d4a5a455913d957b97331c53aca63412 [
file
] [
log
] [
blame
]
/* { dg-additional-options "-std=gnu89" } */
f
(
x
)
{
x
&=
010000
;
x
&=
007777
;
x
^=
017777
;
x
&=
017770
;
return
x
;
}
main
()
{
if
(
f
(-
1
)
!=
017770
)
abort
();
exit
(
0
);
}