PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gcc.target / arm / sdiv_costs_1.c
blob64b7e249f42cce461f2b08119d140a66fb2b3eab
1 /* { dg-do compile } */
2 /* { dg-options "-O3" } */
3 /* { dg-require-effective-target arm_arch_v8a_ok } */
4 /* { dg-add-options arm_arch_v8a } */
6 /* Both sdiv and udiv can be used here, so prefer udiv. */
7 int f1 (unsigned char *p)
9 return 100 / p[1];
12 int f2 (unsigned char *p, unsigned short x)
14 return x / p[0];
17 int f3 (unsigned char *p, int x)
19 x &= 0x7fffffff;
20 return x / p[0];
23 int f5 (unsigned char *p, unsigned short x)
25 return x % p[0];
28 /* This should only generate signed divisions. */
29 int f4 (unsigned char *p)
31 return -100 / p[1];
34 int f6 (unsigned char *p, short x)
36 return x % p[0];
39 /* { dg-final { scan-assembler-times "udiv\tr\[0-9\]+, r\[0-9\]+, r\[0-9\]+" 4 } } */
40 /* { dg-final { scan-assembler-times "sdiv\tr\[0-9\]+, r\[0-9\]+, r\[0-9\]+" 2 } } */