C99 testsuite readiness: Compile more tests with -std=gnu89
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / o.c
blob6ad215ec1f374a6fe3ace454639ebb9e974a4762
1 /* { dg-additional-options "-std=gnu89" } */
3 foo (a, p)
4 char a;
5 int *p;
7 int b = a;
8 *p = b;
9 a = (char) a;
10 if (a)
11 return b;
12 else
13 return b + 1;