summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/torture/pr68379.c
blob: 6a3be7b5f5f2edd1b93c80c2479f1ec44978732d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* { dg-do compile } */

int a, b[3], c[3][5];

void
fn1 ()
{
  int e;
  for (a = 2; a >= 0; a--)
    for (e = 0; e < 4; e++)
      c[a][e] = b[a];
}