summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/graphite/pr42917.c
blob: eddff3b5844927172e343e0327a552343e253fcc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* { dg-do compile } */
/* { dg-options "-O1 -ftree-loop-linear -fcompare-debug" } */

extern int A[];

void
foo ()
{
  int i, j;
  for (i = 0; i < 4; i++)
    for (j = 255; j >= 0; j--)
      A[j] = 0;
}