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

int i, j;
int foo(int b)
{
  j = 0;
  if (b)
    goto L2;
L1:
  i = i + 1;
L2:
  i = i + 1;
  if (i == 1)
    goto L1;
  return j;
}

/* { dg-final { scan-tree-dump "return 0;" "optimized" } } */
/* { dg-final { cleanup-tree-dump "optimized" } } */