]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gcc.dg/tree-ssa/ldist-29.c
Fix profile update in tree_transform_and_unroll_loop
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / ldist-29.c
1 /* { dg-do compile { target size32plus } } */
2 /* { dg-options "-O2 -ftree-loop-distribution -ftree-loop-distribute-patterns -fdump-tree-ldist-details" } */
3
4 #define M (256)
5 #define N (512)
6 int arr[M][N];
7
8 void
9 foo (void)
10 {
11 for (unsigned i = 0; i < M; ++i)
12 for (unsigned j = 0; j < N - 1; ++j)
13 arr[i][j] = 0;
14 }
15
16 /* { dg-final { scan-tree-dump-not "Loop nest . distributed: split to" "ldist" } } */
17 /* { dg-final { scan-tree-dump-times "Loop . distributed: split to 0 loops and 1 library" 1 "ldist" } } */