* tree-loop-distribution.c (INCLUDE_ALGORITHM): New header file.
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / loadpre2.c
blob5257815cc72c945817f2775282a176d7a09e7f39
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fno-tree-loop-im -fdump-tree-pre-stats" } */
3 int main(int *a, int argc)
5 int i;
6 int e;
8 /* Should be able to hoist this out of the loop. */
9 for (i = 0; i < argc; i++)
11 e = *a;
13 return e;
16 /* { dg-final { scan-tree-dump-times "Eliminated: 1" 1 "pre"} } */