URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.c-torture/] [execute/] [pr31605.c] - Rev 711
Go to most recent revision | Compare with Previous | Blame | View Log
void put_field (unsigned int start, unsigned int len) { int cur_bitshift = ((start + len) % 8) - 8; if (cur_bitshift > -8) exit (0); } int main () { put_field (0, 1); abort (); }
Go to most recent revision | Compare with Previous | Blame | View Log