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