PR middle-end/77357 - strlen of constant strings not folded
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 960302-1.c
blob7a9426a4635a0ae8b532b63dc193962ffbacf550
1 long a = 1;
3 foo ()
5 switch (a % 2 % 2 % 2 % 2 % 2 % 2 % 2 % 2)
7 case 0:
8 return 0;
9 case 1:
10 return 1;
11 default:
12 return -1;
16 main ()
18 if (foo () != 1)
19 abort ();
20 exit (0);