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