URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.c-torture/] [execute/] [990117-1.c] - Rev 688
Compare with Previous | Blame | View Log
int foo (int x, int y, int i, int j) { double tmp1 = ((double) x / y); double tmp2 = ((double) i / j); return tmp1 < tmp2; } main () { if (foo (2, 24, 3, 4) == 0) abort (); return 0; }