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