C99 testsuite readiness: Compile more tests with -std=gnu89
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 921218-2.c
blob9c8d7187839d515b9512d02237d4a073a1894046
1 /* { dg-additional-options "-std=gnu89" } */
3 f()
5 long l2;
6 unsigned short us;
7 unsigned long ul;
8 short s2;
10 ul = us = l2 = s2 = -1;
11 return ul;
14 main()
16 if (f()!=(unsigned short)-1)
17 abort();
18 exit(0);