URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.c-torture/] [execute/] [20040820-1.c] - Rev 688
Compare with Previous | Blame | View Log
/* PR rtl-optimization/17099 */ extern void exit (int); extern void abort (void); void check (int a) { if (a != 1) abort (); } void test (int a, int b) { check ((a ? 1 : 0) | (b ? 2 : 0)); } int main (void) { test (1, 0); exit (0); }