diff options
Diffstat (limited to 'gcc/tree-tailcall.c')
-rw-r--r-- | gcc/tree-tailcall.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/gcc/tree-tailcall.c b/gcc/tree-tailcall.c index 098fff0..0fbd4db 100644 --- a/gcc/tree-tailcall.c +++ b/gcc/tree-tailcall.c @@ -21,40 +21,40 @@ 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 "cgraph.h" +#include "gimple-pretty-print.h" #include "alias.h" #include "fold-const.h" #include "stor-layout.h" -#include "tm_p.h" #include "internal-fn.h" #include "gimple-iterator.h" #include "gimplify-me.h" #include "tree-cfg.h" #include "tree-into-ssa.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 "gimple-pretty-print.h" #include "except.h" -#include "tree-pass.h" #include "langhooks.h" #include "dbgcnt.h" -#include "target.h" #include "cfgloop.h" #include "common/common-target.h" -#include "cgraph.h" #include "ipa-utils.h" /* The file implements the tail recursion elimination. It is also used to |