aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/tree-ssa/loadpre12.c
blob: 94a3d00bd2e09d46395029117ca8290de9e8fcc3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* { dg-do compile } */ 
/* { dg-options "-O2 -fdump-tree-pre-stats" } */
typedef int type[2];
type *t;
int g(int);
int f(int tt)
{
    type *t1 = t;
    if ((*t1)[0])
      (*t1)[0] = 2;
    return g((*t1)[0]);
}

/* { dg-final { scan-tree-dump-times "Eliminated: 1" 1 "pre" } } */
/* { dg-final { cleanup-tree-dump "pre" } } */