Fix warning with -Wsign-compare -Wsystem-headers
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / loop-34.c
blob4a7b082fe4333933c23ecb21e59c164ad767a580
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fdump-tree-lim2-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 "lim2" } } */