view gcc/testsuite/gcc.dg/tree-ssa/loadpre11.c @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
line wrap: on
line source

/* { 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"} } */