URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.c-torture/] [execute/] [20021118-3.c] - Rev 801
Go to most recent revision | Compare with Previous | Blame | View Log
extern void abort (void); extern void exit (int); int foo (int x) { if (x == -2 || -x - 100 >= 0) abort (); return 0; } int main () { foo (-3); foo (-99); exit (0); }
Go to most recent revision | Compare with Previous | Blame | View Log