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

int g(int,int);
int f(int t, int c)
{
  int d = 0;
  int e = 0;
  if (t)
    {
      d = t;
      if (c) e = 1;
    }
  else d = 0, e = 0;
  return g(d,e);
}

/* There should be one ifs as one of them should be changed into
   a conditional and the other should be there still.  */
/* { dg-final { scan-tree-dump-times "if" 1 "optimized" }  }*/
/* { dg-final { scan-tree-dump-times "\[^\r\n\]*_. = c_\[0-9\]*.D. != 0" 1 "optimized"  } } */
/* { dg-final { cleanup-tree-dump "optimized" } } */