[committed] Fix previously latent bug in reorg affecting cris port
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 921202-2.c
blobaa3efca36a55365cd1fcbb2eceff202a069c4f4c
1 void abort (void);
2 void exit (int);
4 int
5 f(long long x)
7 x >>= 8;
8 return x & 0xff;
11 int
12 main(void)
14 if (f(0x0123456789ABCDEFLL) != 0xCD)
15 abort();
16 exit (0);