Sign in
gnu
/
gcc
/
e5cfb9cac1d7aba9a8ea73bfe7922cfaff9d61f3
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
960302-1.c
blob: 7a9426a4635a0ae8b532b63dc193962ffbacf550 [
file
] [
log
] [
blame
]
long
a
=
1
;
foo
()
{
switch
(
a
%
2
%
2
%
2
%
2
%
2
%
2
%
2
%
2
)
{
case
0
:
return
0
;
case
1
:
return
1
;
default
:
return
-
1
;
}
}
main
()
{
if
(
foo
()
!=
1
)
abort
();
exit
(
0
);
}