C99 testsuite readiness: Compile more tests with -std=gnu89
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 920429-1.c
blob07ae7d124de0f58298ed797e5a52e25e8fa7e387
1 /* { dg-additional-options "-std=gnu89" } */
2 typedef unsigned char t;int i,j;
3 t*f(t*p){t c;c=*p++;i=((c&2)?1:0);j=(c&7)+1;return p;}
4 main(){t*p0="ab",*p1;p1=f(p0);if(p0+1!=p1)abort();exit(0);}