blob: 8619a0cf5583e8b1868a0afcf6100cf1ec836dec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/* { dg-do compile { target size32plus } } */
/* { 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];
void
foo (void)
{
for (unsigned i = 0; i < M; ++i)
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" 1 "ldist" } } */
|