Remove outermost loop parameter.
[official-gcc/graphite-test-results.git] / gcc / testsuite / gcc.dg / tree-ssa / loadpre21.c
blob77caef6ded6557b48f2112f53f4e076eb3307a8c
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fdump-tree-pre-stats" } */
3 typedef int type[2];
4 int main(type *a, int argc)
6 int b;
7 int i;
8 int d, e;
10 /* Should be able to hoist this out of the loop. */
11 for (i = 0; i < argc; i++)
13 e = (*a)[0];
15 return d + e;
18 /* { dg-final { scan-tree-dump-times "Eliminated: 1" 1 "pre"} } */
19 /* { dg-final { cleanup-tree-dump "pre" } } */