PR tree-optimization/81303
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / loadpre12.c
blob3d063a98da1d65edb6cac5a1c9cf229bfe2d4ba0
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fdump-tree-pre-stats" } */
3 typedef int type[2];
4 type *t;
5 int g(int);
6 int f(int tt)
8 type *t1 = t;
9 if ((*t1)[0])
10 (*t1)[0] = 2;
11 return g((*t1)[0]);
14 /* { dg-final { scan-tree-dump-times "Eliminated: 1" 1 "pre" } } */