summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/tree-ssa/ssa-pre-7.c
blob: c87f62e69c6775cb1db43b290daffc7d3e5f7c07 (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-fre-stats" } */
int
foo (int *array)
{
    if (array[1] != 0)
          return array[1];
      return 0;
}
/* We should eliminate one address calculation, and one load.  */
/* { dg-final { scan-tree-dump-times "Eliminated: 2" 1 "fre"} } */
/* { dg-final { cleanup-tree-dump "fre" } } */