C99 testsuite readiness: Compile more tests with -std=gnu89
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 930429-2.c
blobc1ac7187790c9317edf400bac71af2d694a5c874
1 /* { dg-additional-options "-std=gnu89" } */
3 int
4 f (b)
6 return (b >> 1) > 0;
9 main ()
11 if (!f (9))
12 abort ();
13 if (f (-9))
14 abort ();
15 exit (0);