URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.c-torture/] [execute/] [20071205-1.c] - Rev 688
Compare with Previous | Blame | View Log
/* PR middle-end/34337 */ extern void abort (void); int foo (int x) { return ((x << 8) & 65535) | 255; } int main (void) { if (foo (0x32) != 0x32ff || foo (0x174) != 0x74ff) abort (); return 0; }