1 /* { dg-do compile { target size32plus } } */
2 /* { dg-options "-O2 -ftree-loop-distribution -ftree-loop-distribute-patterns -fdump-tree-ldist-details" } */
6 int a
[M
][N
], b
[M
][N
], c
[M
];
11 for (int i
= M
- 1; i
>= 0; --i
)
14 for (unsigned j
= N
; j
> 0; --j
)
15 a
[i
][j
- 1] = b
[i
][j
- 1];
19 /* { dg-final { scan-tree-dump-times "Loop nest . distributed: split to 0 loops and 2 library" 1 "ldist" } } */