Update concepts branch to revision 131834
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / loop-34.c
blob4a0d1eaad561233e5a085ced909a8f9bbf0d1dd7
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fdump-tree-lim-details" } */
4 int r[6];
6 void f (int n)
8 while (-- n)
10 r [0] += r [5];
11 r [1] += r [0];
12 r [2] += r [1];
13 r [3] += r [2];
14 r [4] += r [3];
15 r [5] += r [4];
20 /* { dg-final { scan-tree-dump-times "Executing store motion of r" 6 "lim" } } */
21 /* { dg-final { cleanup-tree-dump "lim" } } */