URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.target/] [i386/] [divmod-4a.c] - Rev 691
Compare with Previous | Blame | View Log
/* { dg-do compile } */ /* { dg-options "-Os -m8bit-idiv" } */ extern void abort (void); void test (int x, int y, int q, int r) { if ((x / y) != q || (x % y) != r) abort (); } /* { dg-final { scan-assembler-not "divb" } } */ /* { dg-final { scan-assembler-times "idivl" 1 } } */