2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / gcc.c-torture / unsorted / dshift.c
blob94750cc3cbcc22507d622c0b5fb927736c09aa8b
1 foo (b, c)
2 unsigned b, c;
4 return (b << 12) | (c >> 20);
7 main ()
9 printf ("0x%x\n", foo (0x11223344, 0xaabbccdd));