summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/graphite/pr38413.c
blob: 6c2b23a8829b3c9f9ccc79992f68dc76ed64df24 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* { 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;
    }
}