URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.c-torture/] [compile/] [pr42347.c] - Rev 774
Go to most recent revision | Compare with Previous | Blame | View Log
/* PR bootstrap/42347 */ long foo (long x, long y) { x = x & y; switch (y) { case 63L: x >>= 0; break; case 4032L: x >>= 6; break; case 258048L: x >>= 12; break; case 16515072L: x >>= 18; break; default: __builtin_unreachable (); } return x; }
Go to most recent revision | Compare with Previous | Blame | View Log