C99 testsuite readiness: Compile more tests with -std=gnu89
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / xpp.c
blobf73c6ce197aa00ddbab6cfbe4f24d2b739ec2a47
1 /* { dg-additional-options "-std=gnu89" } */
3 foo (a)
5 a++;
6 if (a < 10)
7 return 1;
8 return a;
11 main ()
13 printf ("%d\n", foo ((1 << 31) - 1));