aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/tree-ssa/ldist-31.c
blob: 60a9f743b1b15021c451ff66663bd54548c0bb9c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* { dg-do compile } */
/* { dg-options "-O2 -ftree-loop-distribution -ftree-loop-distribute-patterns -fdump-tree-ldist-details" } */

#define M (256)
#define N (512)
int a[M][N], b[M][N], c[M];

void
foo (void)
{
  for (int i = M - 1; i >= 0; --i)
    {
      c[i] = 0;
      for (unsigned j = N; j > 0; --j)
	a[i][j - 1] = b[i][j - 1];
    }
}

/* { dg-final { scan-tree-dump-times "Loop nest . distributed: split to 0 loops and 2 library" 1 "ldist" } } */