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