gcc/
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / loadpre24.c
blob31fcc9f8b7416b25378d618747075c120a1be177
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fdump-tree-pre-stats" } */
4 int a;
6 int foo(int argc)
8 int b;
9 int c;
10 int i;
11 int d, e;
13 for (i = 0; i < argc; i++)
15 e = a;
16 a = 9;
18 return d + e;
21 /* We will move the load of a out of the loop. */
23 /* { dg-final { scan-tree-dump-times "Eliminated: 1" 1 "pre" } } */
24 /* { dg-final { cleanup-tree-dump "pre" } } */