aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/graphite/pr82421.c
blob: 5da1636798094f8040100d2f1dce2939e03198bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* { dg-do compile } */
/* { dg-options "-O -floop-nest-optimize" } */

int pc;

void
qy (int l9)
{
  int tw = 4;
  int fb[tw];

  while (l9 < 1)
    {
      int dr;

      pc = fb[2];
      for (dr = 0; dr < tw; ++dr)
	fb[dr] = 0;
      ++l9;
    }
}