URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [gcc.dg/] [20040309-1.c] - Rev 149
Go to most recent revision | Compare with Previous | Blame | View Log
/* Test integer mod on ia64. There was a bug in the inline integer division code. */ /* { dg-do run } */ /* { dg-options "-minline-int-divide-max-throughput" { target ia64-*-* } } */ extern void abort (void); volatile int i = 10; volatile int j = 10; int main() { int k = i % j; if (k != 0) abort(); return 0; }
Go to most recent revision | Compare with Previous | Blame | View Log