Merged r157653 through r157895 into branch.
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / loadpre14.c
blob11bfd00605d1247ea7ade63b58f6efeb241b928d
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fdump-tree-pre-stats" } */
3 typedef int type[2];
4 int foo(type *a, int argc)
6 type c = {0, 1};
7 int d, e;
9 /* Should be able to eliminate the second load of *a along the main path. */
10 d = (*a)[0];
11 if (argc)
13 a = &c;
15 e = (*a)[0];
16 return d + e;
18 /* { dg-final { scan-tree-dump-times "Eliminated: 1" 1 "pre"} } */
19 /* { dg-final { cleanup-tree-dump "pre" } } */