tcc-65816/test/tests/921202-2.c
2017-06-09 13:52:12 +02:00

14 lines
129 B
C

int
f(long long x)
{
x >>= 8;
return x & 0xff;
}
main()
{
if (f(0x0123456789ABCDEFLL) != 0xCD)
abort();
exit (0);
}