aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/tree-ssa/ssa-fre-39.c
blob: 2ced372acc9a9e31e6f83229d2d2b12c612496cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* { dg-do compile } */
/* { dg-options "-O -fdump-tree-fre1" } */

int foo (int i)
{
  int k = i + 1;
  int j = i + 1;
  if (k != j)
    k = k + 1;
  if (k != j)
    k = k + 1;
  k = k - i;
  return k;
}

/* We should be able to value-number the final assignment to k to 1.  */

/* { dg-final { scan-tree-dump "return 1;" "fre1" } } */