aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/tree-ssa/loadpre11.c
blob: eb6089c4b902cb910f857b404e20ad33a2cf6696 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* { dg-do compile } */ 
/* { dg-options "-O2 -fdump-tree-pre-stats -fno-tree-cselim" } */
int *t;
int g(int);
int f(int tt)
{
    int *t1 = t;
    if (*t1)
      *t1 = 2;
    return g(*t1);
} 
/* { dg-final { scan-tree-dump-times "Eliminated: 1" 1 "pre"} } */
/* { dg-final { cleanup-tree-dump "pre" } } */