aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/tree-ssa/vrp04.c
blob: bf5d683cb79618eaf3ea877b586129b52d380d76 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-vrp1" } */

foo (int a, int b)
{
  if (a == b)
    /* This should be folded to if (1)  */
    if (a == b)
      return a + b;
}

/* { dg-final { scan-tree-dump-times "Folding predicate a_.*to 1" 1 "vrp1" } } */
/* { dg-final { cleanup-tree-dump "vrp1" } } */