Merge from mainline
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 20060127-1.c
blobfe73253a58739a3c3faebb9d3043c6010b84136f
1 void abort ();
3 void
4 f (long long a)
6 if ((a & 0xffffffffLL) != 0)
7 abort ();
10 long long a = 0x1234567800000000LL;
12 int
13 main ()
15 f (a);
16 return 0;