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

int
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 "if" 1 "vrp1" } } */