Daily bump.
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / evrp1.c
blob8c6e4e60a669094f839d962c38a04101c36d6a68
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fdump-tree-evrp" } */
4 int foo (int i);
5 int bar (int j)
7 if (j > 2)
8 return foo (j + 2);
9 else
10 return j;
13 /* { dg-final { scan-tree-dump "\\\[5, \\+INF" "evrp" } } */