2018-03-19 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / pr35286.c
blob4429cc857bf69a80a3d62991f920f2d8fb13dc82
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fno-code-hoisting -fno-tree-cselim -fdump-tree-pre-stats" } */
3 int g2;
4 struct A {
5 int a; int b;
6 }g1;
7 int foo(int a, int b)
9 if (a > 0)
11 g1.a = a+ b;
13 else
14 g1.a = b;
16 g2 = a+b;
18 return g1.a;
20 /* We will eliminate the g1.a from the return statement as fully redundant,
21 and remove one calculation of a + b. */
22 /* { dg-final { scan-tree-dump-times "Eliminated: 2" 1 "pre"} } */