blob: 0ecccc7df6042cd9fb2819b99a1b9222cefc61da [file] [log] [blame]
/* { dg-options "-O2 -fgraphite-identity" } */
static int qsz;
void specqsort(base, n, size, compar)
int n, size, compar;
char *base;
{
register char c, *i, *j, *lo, *hi;
qsz = size;
for (i = base, hi = base + qsz; i < hi; )
{
*i++ = c;
}
}