Merge from mainline
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / loadpre3.c
blob8767e16a98e2a543d74c055d6c3477189c338bc9
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fdump-tree-pre-stats" } */
3 int main(int **a,int argc)
5 int b;
6 int d, e;
8 if (argc)
10 d = *(*a);
12 else
16 /* Should be able to eliminate one of the *(*a)'s along the if path
17 by pushing it into the else path. We will also eliminate
18 one of the *a's. */
19 e = *(*a);
20 return d + e;
23 /* { dg-final { scan-tree-dump-times "Eliminated: 2" 1 "pre"} } */
24 /* { dg-final { cleanup-tree-dump "pre" } } */