C99 testsuite readiness: Compile more tests with -std=gnu89
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / signext2.c
blob9826b75e9eff6b40f14bfb6103267cc528b61e12
1 /* { dg-additional-options "-std=gnu89" } */
3 long long
4 foo (a)
5 int a;
7 return a;
10 main ()
12 printf ("%d\n", (int) (foo (-1) >> 32));