C99 testsuite readiness: Compile more tests with -std=gnu89
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / as.c
bloba1c001cf8a257e93ad324a52c7620b8b8f852f51
1 /* { dg-additional-options "-std=gnu89" } */
3 #define S 31
4 #define A 17
6 foo (a)
7 unsigned a;
9 return (a >> S) & ((1 << A) - 1);
12 main ()
14 printf ("%d%d\n", foo (-1), foo (0));