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

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