1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fno-tree-dominator-opts -fdump-tree-fre1-stats" } */
3 int
foo(int * array)4 foo (int *array)
5 {
6     if (array[1] != 0)
7           return array[1];
8       return 0;
9 }
10 /* We should eliminate one load.  */
11 /* { dg-final { scan-tree-dump-times "Eliminated: 1" 1 "fre1"} } */
12