Fix warning with -Wsign-compare -Wsystem-headers
[official-gcc.git] / gcc / testsuite / gcc.dg / predict-6.c
blob5d6fbf158f298c927704c74de8e98c418006f2ba
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fdump-tree-profile_estimate" } */
4 extern int global;
6 int bar (int);
8 void foo (int base, int bound)
10 int i, ret = 0;
11 for (i = base; i <= bound; i++)
13 if (i < base)
14 global += bar (i);
15 if (i < base + 1)
16 global += bar (i);
17 if (i <= base + 3)
18 global += bar (i);
19 if (i - 1 < base)
20 global += bar (i);
24 /* { dg-final { scan-tree-dump-times "guess loop iv compare heuristics of edge\[^:\]*: 36.00%" 4 "profile_estimate"} } */