blob: 8c611e91fcdc106774e69cd42c20565c3a9a18d3 [file] [log] [blame]
/* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-vrp1 -fno-early-inlining" } */
inline int ten()
{
return 10;
}
inline int zero()
{
return 0;
}
int
foo (int k, int j)
{
if (k >= ten())
{
if (j > k)
{
/* We should fold this to if (1). */
if (j > zero())
return j;
}
}
return j+1;
}
/* { dg-final { scan-tree-dump-times "Folding predicate j_.*to 1" 1 "vrp1" } } */