aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/tree-ssa/vrp05.c
blob: 7b8b61b44431366181b6cb6f799b5638da1b9b0c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-vrp1 -fno-early-inlining" } */


inline int ten()
{
  return 10;
}
inline int zero()
{
  return 0;
}

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" } } */
/* { dg-final { cleanup-tree-dump "vrp1" } } */