Fix warning with -Wsign-compare -Wsystem-headers
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / loadpre1.c
blob1890a5195ee98183049797e1706d8f5602f286f4
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fdump-tree-pre-stats" } */
3 int foo(int *a, int argc)
5 int c;
6 int d, e;
8 /* Should be able to eliminate the second load of *a along the main path. */
9 d = *a;
10 if (argc)
12 a = &c;
14 e = *a;
15 return d + e;
17 /* { dg-final { scan-tree-dump-times "Eliminated: 1" 1 "pre" } } */