blob: 24d7f7df2089398288bdf67a489eb71d733a4450 [file] [log] [blame]
/* { dg-do compile } */
/* { dg-options "-O3" } */
/* Both sdiv and udiv can be used here, so prefer udiv. */
int f1 (unsigned char *p)
{
return 100 / p[1];
}
int f2 (unsigned char *p, unsigned short x)
{
return x / p[0];
}
int f3 (unsigned char *p, int x)
{
x &= 0x7fffffff;
return x / p[0];
}
int f5 (unsigned char *p, unsigned short x)
{
return x % p[0];
}
/* This should only generate signed divisions. */
int f4 (unsigned char *p)
{
return -100 / p[1];
}
int f6 (unsigned char *p, short x)
{
return x % p[0];
}
/* { dg-final { scan-assembler-times "udiv\tw\[0-9\]+, w\[0-9\]+" 4 } } */
/* { dg-final { scan-assembler-times "sdiv\tw\[0-9\]+, w\[0-9\]+" 2 } } */