URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.c-torture/] [unsorted/] [dshift.c] - Rev 826
Compare with Previous | Blame | View Log
foo (b, c) unsigned b, c; { return (b << 12) | (c >> 20); } main () { printf ("0x%x\n", foo (0x11223344, 0xaabbccdd)); }