diff options
author | bstarynk <bstarynk@138bc75d-0d04-0410-961f-82ee72b054a4> | 2016-02-10 15:13:54 +0000 |
---|---|---|
committer | bstarynk <bstarynk@138bc75d-0d04-0410-961f-82ee72b054a4> | 2016-02-10 15:13:54 +0000 |
commit | 8cff878b277f9af6c2827a87581baac5f768e12a (patch) | |
tree | d4e178503efd243eed24ff3b753cd998370d75d4 /gcc/bt-load.c | |
parent | 9610b14f8599a9db94822d3f0923b58b2f1177dc (diff) | |
download | gcc-8cff878b277f9af6c2827a87581baac5f768e12a.tar.gz |
[./]
2016-02-10 Basile Starynkevitch <basile@starynkevitch.net>
{{merging with some of GCC 6, using
svn merge -r222130:226090 ^/trunk ; UNSTABLE}}
[gcc/]
2016-02-10 Basile Starynkevitch <basile@starynkevitch.net>
{{ merging with trunk 226090 ; UNSTABLE }}
* melt-run.proto.h: include tree-ssa-scopedtables.h
* tree-ssa-dom.c: skip second record_edge_info
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/melt-branch@233272 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/bt-load.c')
-rw-r--r-- | gcc/bt-load.c | 28 |
1 files changed, 5 insertions, 23 deletions
diff --git a/gcc/bt-load.c b/gcc/bt-load.c index c028281ef3f..031b95de082 100644 --- a/gcc/bt-load.c +++ b/gcc/bt-load.c @@ -21,27 +21,14 @@ along with GCC; see the file COPYING3. If not see #include "config.h" #include "system.h" #include "coretypes.h" -#include "tm.h" +#include "backend.h" +#include "tree.h" #include "rtl.h" -#include "hard-reg-set.h" +#include "df.h" #include "regs.h" #include "target.h" -#include "symtab.h" -#include "hashtab.h" -#include "hash-set.h" -#include "vec.h" -#include "machmode.h" -#include "input.h" -#include "function.h" #include "flags.h" -#include "statistics.h" -#include "double-int.h" -#include "real.h" -#include "fixed-value.h" #include "alias.h" -#include "wide-int.h" -#include "inchash.h" -#include "tree.h" #include "insn-config.h" #include "expmed.h" #include "dojump.h" @@ -57,14 +44,9 @@ along with GCC; see the file COPYING3. If not see #include "diagnostic-core.h" #include "tree-pass.h" #include "recog.h" -#include "dominance.h" -#include "cfg.h" #include "cfgrtl.h" #include "cfganal.h" #include "cfgcleanup.h" -#include "predict.h" -#include "basic-block.h" -#include "df.h" #include "cfgloop.h" #include "rtl-iter.h" #include "fibonacci_heap.h" @@ -443,7 +425,7 @@ note_btr_set (rtx dest, const_rtx set ATTRIBUTE_UNUSED, void *data) if (!REG_P (dest)) return; regno = REGNO (dest); - end_regno = END_HARD_REGNO (dest); + end_regno = END_REGNO (dest); for (; regno < end_regno; regno++) if (TEST_HARD_REG_BIT (all_btrs, regno)) { @@ -1212,7 +1194,7 @@ move_btr_def (basic_block new_def_bb, int btr, btr_def def, bitmap live_range, btr_mode = GET_MODE (SET_DEST (set)); btr_rtx = gen_rtx_REG (btr_mode, btr); - new_insn = as_a <rtx_insn *> (gen_move_insn (btr_rtx, src)); + new_insn = gen_move_insn (btr_rtx, src); /* Insert target register initialization at head of basic block. */ def->insn = emit_insn_after (new_insn, insp); |