2015-03-24 Paolo Carlini <paolo.carlini@oracle.com>
[official-gcc.git] / gcc / testsuite / g++.dg / predict-loop-exit-3.C
blob9afc78ef91aaa7db1b868c498aaf35d431db7217
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fdump-tree-profile_estimate" } */
4 int g;
5 int foo();
6 void test() {
7   while (foo() && (g < 10 || g > 20))
8     g++;
9   return;
12 /* { dg-final { scan-tree-dump-times "loop exit heuristics:" 3 "profile_estimate"} } */
13 /* { dg-final { cleanup-tree-dump "profile_estimate" } } */