aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/tree-ssa/pr15349.c
blob: 26c1938424ac00dd5219437982f2e337dbfa0e13 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/* PR 15349.  Merge two PHI nodes.  */
/* { dg-do compile } */
/* { dg-options "-O1 -fdump-tree-mergephi2" } */

int
foo (int a, int b)
{
  int t;

  if (b)
    {
      if (a)
	t = 3;
      else
	t = 5;

      a = 0;
    }
  else
    t = 7;

  return t;
}

/* { dg-final { scan-tree-dump-times "PHI" 1 "mergephi2"} } */
/* { dg-final { cleanup-tree-dump "mergephi2" } } */