C99 testsuite readiness: Compile more tests with -std=gnu89
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 920428-2.c
blob9f84a15de4655c15a914abe7438503dbc8cc8433
1 /* { dg-require-effective-target label_values } */
2 /* { dg-require-effective-target trampolines } */
3 /* { dg-additional-options "-std=gnu89" } */
5 s(i){if(i>0){__label__ l1;int f(int i){if(i==2)goto l1;return 0;}return f(i);l1:;}return 1;}
6 x(){return s(0)==1&&s(1)==0&&s(2)==1;}
7 main(){if(x()!=1)abort();exit(0);}