aboutsummaryrefslogtreecommitdiff
path: root/gcc/sel-sched.c
diff options
context:
space:
mode:
authorDavid Malcolm <dmalcolm@redhat.com>2014-08-22 18:47:27 +0000
committerDavid Malcolm <dmalcolm@gcc.gnu.org>2014-08-22 18:47:27 +0000
commit52d251b52234cd64fa14da7981f679c3c564d76b (patch)
tree3a982d58ef0dcef94cc061bf3bf424e1e88eebcb /gcc/sel-sched.c
parentf172301ff40160dedd796d9846613e2706f7e3ea (diff)
downloadgcc-52d251b52234cd64fa14da7981f679c3c564d76b.zip
gcc-52d251b52234cd64fa14da7981f679c3c564d76b.tar.gz
gcc-52d251b52234cd64fa14da7981f679c3c564d76b.tar.bz2
get_ebb_head_tail works with rtx_insn
gcc/ * sched-int.h (get_ebb_head_tail): Strengthen params "headp" and "tailp" from rtx * to rtx_insn **. * ddg.c (build_intra_loop_deps): Strengthen locals head", "tail" from rtx to rtx_insn *. * haifa-sched.c (get_ebb_head_tail): Strengthen params "headp" and "tailp" from rtx * to rtx_insn **. Strengthen locals "beg_head", "beg_tail", "end_head", "end_tail", "note", "next", "prev" from rtx to rtx_insn *. * modulo-sched.c (const_iteration_count): Strengthen return type and locals "insn", "head", "tail" from rtx to rtx_insn *. Replace use of NULL_RTX with NULL when working with insns. (loop_single_full_bb_p): Strengthen locals "head", "tail" from rtx to rtx_insn *. (sms_schedule): Likewise. * sched-rgn.c (init_ready_list): Likewise, also for locals "src_head" and "src_next_tail". (compute_block_dependences): Likewise. (free_block_dependencies): Likewise. (debug_rgn_dependencies): Likewise. (free_rgn_deps): Likewise. (compute_priorities): Likewise. (schedule_region): Likewise. * sel-sched.c (find_ebb_boundaries): Likewise. * config/sh/sh.c (find_insn_regmode_weight): Strengthen locals "insn", "next_tail", "head", "tail" from rtx to rtx_insn *. From-SVN: r214352
Diffstat (limited to 'gcc/sel-sched.c')
-rw-r--r--gcc/sel-sched.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/sel-sched.c b/gcc/sel-sched.c
index 3248629..e4a07fd 100644
--- a/gcc/sel-sched.c
+++ b/gcc/sel-sched.c
@@ -7024,7 +7024,7 @@ simplify_changed_insns (void)
static void
find_ebb_boundaries (basic_block bb, bitmap scheduled_blocks)
{
- insn_t head, tail;
+ rtx_insn *head, *tail;
basic_block bb1 = bb;
if (sched_verbose >= 2)
sel_print ("Finishing schedule in bbs: ");