diff options
Diffstat (limited to 'gcc/tree-ssa-loop-ivopts.c')
-rw-r--r-- | gcc/tree-ssa-loop-ivopts.c | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/gcc/tree-ssa-loop-ivopts.c b/gcc/tree-ssa-loop-ivopts.c index 91f7284..4e88107 100644 --- a/gcc/tree-ssa-loop-ivopts.c +++ b/gcc/tree-ssa-loop-ivopts.c @@ -65,47 +65,48 @@ along with GCC; see the file COPYING3. If not see #include "system.h" #include "coretypes.h" #include "backend.h" -#include "cfghooks.h" +#include "target.h" +#include "rtl.h" #include "tree.h" #include "gimple.h" -#include "rtl.h" +#include "cfghooks.h" +#include "tree-pass.h" +#include "tm_p.h" #include "ssa.h" +#include "expmed.h" +#include "insn-config.h" +#include "emit-rtl.h" +#include "recog.h" +#include "cgraph.h" +#include "gimple-pretty-print.h" #include "alias.h" #include "fold-const.h" #include "stor-layout.h" -#include "tm_p.h" -#include "gimple-pretty-print.h" #include "internal-fn.h" #include "tree-eh.h" #include "gimplify.h" #include "gimple-iterator.h" #include "gimplify-me.h" -#include "cgraph.h" #include "tree-cfg.h" #include "tree-ssa-loop-ivopts.h" #include "tree-ssa-loop-manip.h" #include "tree-ssa-loop-niter.h" #include "tree-ssa-loop.h" #include "flags.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" #include "cfgloop.h" -#include "tree-pass.h" #include "tree-chrec.h" #include "tree-scalar-evolution.h" #include "params.h" #include "langhooks.h" #include "tree-affine.h" -#include "target.h" #include "tree-inline.h" #include "tree-ssa-propagate.h" #include "tree-ssa-address.h" @@ -115,7 +116,6 @@ along with GCC; see the file COPYING3. If not see /* FIXME: Expressions are expanded to RTL in this pass to determine the cost of different addressing modes. This should be moved to a TBD interface between the GIMPLE and RTL worlds. */ -#include "recog.h" /* The infinite cost. */ #define INFTY 10000000 |