OSDN Git Service

Fix PR 17408 and PR 17409.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.c-torture / execute / 960219-1.c
1 f (int i)
2 {
3   if (((1 << i) & 1) == 0)
4     abort ();
5 }
6
7 main ()
8 {
9   f (0);
10   exit (0);
11 }