OSDN Git Service

2008-07-28 Richard Guenther <rguenther@suse.de>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / tree-ssa / pr35287.c
1 /* { dg-do compile } */ 
2 /* { dg-options "-O2 -fdump-tree-pre-stats" } */
3 int *gp;
4 int foo(int p)
5 {
6   int t = 0;
7   if (p)
8     t = *gp + 1;
9
10   return (*gp + t);
11 }
12
13 /* We will eliminate one load of gp and one indirect load of *gp. */
14 /* { dg-final { scan-tree-dump-times "Eliminated: 2" 1 "pre"} } */
15 /* { dg-final { cleanup-tree-dump "pre" } } */