URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.c-torture/] [execute/] [20050104-1.c] - Rev 801
Go to most recent revision | Compare with Previous | Blame | View Log
/* PR tree-optimization/19060 */ void abort (void); static long long min () { return -__LONG_LONG_MAX__ - 1; } void foo (long long j) { if (j > 10 || j < min ()) abort (); } int main (void) { foo (10); return 0; }
Go to most recent revision | Compare with Previous | Blame | View Log