Daily bump.
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / pr35287.c
blobf7cc5c0426211b82caeb3fd0d894e8c4f3702a1f
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fno-code-hoisting -fdump-tree-pre-stats" } */
3 int *gp;
4 int foo(int p)
6 int t = 0;
7 if (p)
8 t = *gp + 1;
10 return (*gp + t);
13 /* We will eliminate one load of gp and one indirect load of *gp and
14 the add of zero. */
15 /* { dg-final { scan-tree-dump-times "Eliminated: 3" 1 "pre"} } */