Warn pointer to signed integer cast for ilp32
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / pr35287.c
blob1e976628096771f9fdf900ab44a77378334c4ebe
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -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. */
14 /* { dg-final { scan-tree-dump-times "Eliminated: 2" 1 "pre"} } */
15 /* { dg-final { cleanup-tree-dump "pre" } } */