blob: de4a1fb9399dcbea46fc13a7cf7839e4ce158f9e [file] [log] [blame]
/* { dg-do compile { target { ! { ia32 } } } } */
/* { dg-options "-O2 -m8bit-idiv" } */
extern void abort (void);
void
test (long long x, long long y, long long q, long long r)
{
if ((x / y) != q || (x % y) != r)
abort ();
}
/* { dg-final { scan-assembler-times "divb" 1 } } */
/* { dg-final { scan-assembler-times "idivq" 1 } } */