Add qdf24xx base tuning support.
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / loadpre2.c
blob1ef048443980f1a1159499bb922df493672332b4
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -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"} } */