8sa1-gcc/gcc/testsuite/gcc.c-torture/execute/960302-1.c

22 lines
225 B
C
Raw Normal View History

1997-08-19 03:34:40 -04:00
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);
}