2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 960402-1.c
blob601a9a3b09135f474c1b50fee8c21079e4a7eeff
1 f (signed long long int x)
3 return x > 0xFFFFFFFFLL || x < -0x80000000LL;
6 main ()
8 if (f (0) != 0)
9 abort ();
10 exit (0);