C99 testsuite readiness: Compile more tests with -std=gnu89
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / bt386.c
blob5ba2b794d0e00c25bdd30633f5260ec3ad97ff39
1 /* { dg-additional-options "-std=gnu89" } */
3 foo (a, b)
5 return (a & (1 << b)) != 0;
8 bar (a, b)
10 a ^= (1 << b);
11 return a != 0;
14 main ()
16 int i;
17 for (i = 0; i < 32; i++)
18 printf ("%d ", foo (0x8000000f, i));
19 puts ("");