diff options
Diffstat (limited to 'gcc/tree-ssa-pre.c')
-rw-r--r-- | gcc/tree-ssa-pre.c | 17 |
1 files changed, 14 insertions, 3 deletions
diff --git a/gcc/tree-ssa-pre.c b/gcc/tree-ssa-pre.c index 497890f..3ef7510 100644 --- a/gcc/tree-ssa-pre.c +++ b/gcc/tree-ssa-pre.c @@ -36,7 +36,6 @@ along with GCC; see the file COPYING3. If not see #include "fold-const.h" #include "predict.h" #include "hard-reg-set.h" -#include "input.h" #include "function.h" #include "dominance.h" #include "cfg.h" @@ -44,7 +43,6 @@ along with GCC; see the file COPYING3. If not see #include "basic-block.h" #include "gimple-pretty-print.h" #include "tree-inline.h" -#include "inchash.h" #include "hash-table.h" #include "tree-ssa-alias.h" #include "internal-fn.h" @@ -64,6 +62,20 @@ along with GCC; see the file COPYING3. If not see #include "tree-ssanames.h" #include "tree-ssa-loop.h" #include "tree-into-ssa.h" +#include "hashtab.h" +#include "rtl.h" +#include "flags.h" +#include "statistics.h" +#include "real.h" +#include "fixed-value.h" +#include "insn-config.h" +#include "expmed.h" +#include "dojump.h" +#include "explow.h" +#include "calls.h" +#include "emit-rtl.h" +#include "varasm.h" +#include "stmt.h" #include "expr.h" #include "tree-dfa.h" #include "tree-ssa.h" @@ -71,7 +83,6 @@ along with GCC; see the file COPYING3. If not see #include "alloc-pool.h" #include "obstack.h" #include "tree-pass.h" -#include "flags.h" #include "langhooks.h" #include "cfgloop.h" #include "tree-ssa-sccvn.h" |