blob: 48d4a412d1bdb65dcff61198ec916fc8fed67a6a [file] [log] [blame]
int
f(long long x)
{
x >>= 8;
return x & 0xff;
}
main()
{
if (f(0x0123456789ABCDEFLL) != 0xCD)
abort();
exit (0);
}