C99 testsuite readiness: Compile more tests with -std=gnu89
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / andm.c
blob40a5505443dde581ca3c437e886667a9b1adde9f
1 /* { dg-additional-options "-std=gnu89" } */
3 foo (p)
4 int *p;
6 return (*p & 255) == 0;
9 bar (a)
11 return (a & 0xfff00000) == 0;
14 main ()
16 printf ("%d%d\n", bar (-1), bar(0));