1 /* { dg-do compile } */
2 /* { dg-options "-O2 -m8bit-idiv" } */
3 
4 extern void abort (void);
5 
6 void
test(int x,int y,int q,int r)7 test (int x, int y, int q, int r)
8 {
9   if ((x / y) != q || (x % y) != r)
10     abort ();
11 }
12 
13 /* { dg-final { scan-assembler-times "divb" 1 } } */
14 /* { dg-final { scan-assembler-times "idivl" 1 } } */
15