C99 testsuite readiness: Compile more tests with -std=gnu89
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / bitw.c
blob9b9f591dc044f00d8756882666c7bf359648d0bb
1 /* { dg-additional-options "-std=gnu89" } */
3 foo (a)
4 unsigned a;
6 unsigned b = 0;
8 if ((a & 12345678) > b)
9 return 1;
10 return 0;