OSDN Git Service

2011-08-19 Andrew Stubbs <ams@codesourcery.com>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.target / i386 / udivmod-4a.c
1 /* { dg-do compile } */
2 /* { dg-options "-Os -m8bit-idiv" } */
3
4 extern void abort (void);
5
6 void
7 test (unsigned int x, unsigned int y, unsigned int q, unsigned int r)
8 {
9   if ((x / y) != q || (x % y) != r)
10     abort ();
11 }
12
13 /* { dg-final { scan-assembler-not "divb" } } */
14 /* { dg-final { scan-assembler-times "divl" 1 } } */