C99 testsuite readiness: Compile more tests with -std=gnu89
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / delay.c
blob4a152c5b3d62b55f24084212187b55fb1965ac7c
1 /* { dg-additional-options "-std=gnu89" } */
3 foo (a, b)
5 if (a == 1)
6 goto foo1;
7 if (a == 2)
8 goto foo2;
9 foo1:
10 return 2;
11 foo2:
12 return 3;