aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/i386/udivmod-5.c
blob: 7c31a0a9c3104f9e6aa3d31ef43b295456421fd0 (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 foo (unsigned int, unsigned int, unsigned int,
		 unsigned int, unsigned int, unsigned int);

void
bar (unsigned int x, unsigned int y)
{
  foo (0, 0, 0, 0, x / y, x % y);
}

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