2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 930429-2.c
blobe52c8b4d723dccd6e4f6259bf2cdab675c06dbfa
1 int
2 f (b)
4 return (b >> 1) > 0;
7 main ()
9 if (!f (9))
10 abort ();
11 if (f (-9))
12 abort ();
13 exit (0);