Merged trunk at revision 161680 into branch.
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / ssa-pre-7.c
blobf87476a3a9f323cc12c81f802dda0b803720fd2a
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fno-tree-dominator-opts -fdump-tree-fre-stats" } */
3 int
4 foo (int *array)
6 if (array[1] != 0)
7 return array[1];
8 return 0;
10 /* We should eliminate one load. */
11 /* { dg-final { scan-tree-dump-times "Eliminated: 1" 1 "fre"} } */
12 /* { dg-final { cleanup-tree-dump "fre" } } */