Update concepts branch to revision 131834
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / loadpre11.c
blobeb6089c4b902cb910f857b404e20ad33a2cf6696
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fdump-tree-pre-stats -fno-tree-cselim" } */
3 int *t;
4 int g(int);
5 int f(int tt)
7 int *t1 = t;
8 if (*t1)
9 *t1 = 2;
10 return g(*t1);
12 /* { dg-final { scan-tree-dump-times "Eliminated: 1" 1 "pre"} } */
13 /* { dg-final { cleanup-tree-dump "pre" } } */