diff options
Diffstat (limited to 'gcc/combine.c')
-rw-r--r-- | gcc/combine.c | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/gcc/combine.c b/gcc/combine.c index 101cf35..597aa80 100644 --- a/gcc/combine.c +++ b/gcc/combine.c @@ -96,7 +96,6 @@ along with GCC; see the file COPYING3. If not see #include "regs.h" #include "hard-reg-set.h" #include "predict.h" -#include "input.h" #include "function.h" #include "dominance.h" #include "cfg.h" @@ -105,6 +104,17 @@ along with GCC; see the file COPYING3. If not see #include "basic-block.h" #include "insn-config.h" /* Include expr.h after insn-config.h so we get HAVE_conditional_move. */ +#include "hashtab.h" +#include "statistics.h" +#include "real.h" +#include "fixed-value.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 "insn-attr.h" #include "recog.h" @@ -123,8 +133,6 @@ along with GCC; see the file COPYING3. If not see #include "ipa-ref.h" #include "cgraph.h" #include "obstack.h" -#include "statistics.h" -#include "params.h" #include "rtl-iter.h" /* Number of attempts to combine instructions in this function. */ |