]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gcc.dg/tree-ssa/loop-bound-1.c
Fix profile update in tree_transform_and_unroll_loop
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / loop-bound-1.c
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fdump-tree-ivopts-details" } */
3
4 int *a;
5
6 int
7 foo (unsigned char s, unsigned char l)
8 {
9 unsigned char i;
10 int sum = 0;
11
12 for (i = s; i < l; i += 1)
13 {
14 sum += a[i];
15 }
16
17 return sum;
18 }
19
20 /* Check loop niter bound information. */
21 /* { dg-final { scan-tree-dump "bounded by 254" "ivopts" } } */
22 /* { dg-final { scan-tree-dump-not "bounded by 255" "ivopts" } } */