aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/tree-ssa/20050412-1.c
blob: 9c172d769a4ebac295894d608087d503d0ec74f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* PR tree-optimization/14627 */
/* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-optimized" } */


int b;
void foo (int a) {
	if (a)
		a = 3;
	b = a;
}

/* Make sure we do not have an assignment a = 0 in the resulting
   optimized dump.  */
/* { dg-final { scan-tree-dump-times "a.* = 0;" 0 "optimized"} } */
/* { dg-final { cleanup-tree-dump "optimized" } } */