aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/tree-ssa/ssa-pre-5.c
blob: d0e985f81a53123127be597b6ea551abb10a0226 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* { dg-do compile } */ 
/* { dg-options "-O2 -fdump-tree-pre-stats" } */
int 
foo (int i)
{
	int a, b;
	if (i)
		a = 3, b = 2;
	else
		a = 2, b = 3;
	return a + b;
}
/* We should detect that a+b is the same along both edges, and replace it with
   5  */
/* { dg-final { scan-tree-dump-times "Eliminated: 1" 1 "pre"} } */
/* { dg-final { scan-tree-dump-times "Insertions" 0 "pre"} } */
/* { dg-final { cleanup-tree-dump "pre" } } */