2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 921202-2.c
blob48d4a412d1bdb65dcff61198ec916fc8fed67a6a
1 int
2 f(long long x)
4 x >>= 8;
5 return x & 0xff;
8 main()
10 if (f(0x0123456789ABCDEFLL) != 0xCD)
11 abort();
12 exit (0);