aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/i386/udivmod-4.c
blob: 14dd87c1732224440be84f39f7e0301aceb15702 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* { dg-do compile } */
/* { dg-options "-O2 -m8bit-idiv" } */

extern void abort (void);

void
test (unsigned int x, unsigned int y, unsigned int q, unsigned int r)
{
  if ((x / y) != q || (x % y) != r)
    abort ();
}

/* { dg-final { scan-assembler-times "divb" 1 } } */
/* { dg-final { scan-assembler-times "divl" 1 } } */