OSDN Git Service

Initial revision
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.c-torture / execute / 930429-2.c
1 int
2 f (b)
3 {
4   return (b >> 1) > 0;
5 }
6
7 main ()
8 {
9   if (!f (9))
10     abort ();
11   if (f (-9))
12     abort ();
13   exit (0);
14 }