C99 testsuite readiness: Compile more tests with -std=gnu89
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 930719-1.c
blob3104dc56c4c6ac68845e0a04b3fb83907c12e7cb
1 /* { dg-additional-options "-std=gnu89" } */
3 int
4 f (foo, bar, com)
6 unsigned align;
7 if (foo)
8 return 0;
9 while (1)
11 switch (bar)
13 case 1:
14 if (com != 0)
15 return align;
16 *(char *) 0 = 0;
21 main ()
23 f (0, 1, 1);
24 exit (0);