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