Commit c6486552 by Andrey Belevantsev Committed by Andrey Belevantsev

sel-sched.c (compute_av_set_at_bb_end): Do not test that number of all…

sel-sched.c (compute_av_set_at_bb_end): Do not test that number of all successors is the same as number of successors...

        * sel-sched.c (compute_av_set_at_bb_end): Do not test that number of
        all successors is the same as number of successors in current region.

From-SVN: r155899
parent f07013eb
2010-01-14 Andrey Belevantsev <abel@ispras.ru>
* sel-sched.c (compute_av_set_at_bb_end): Do not test that number of
all successors is the same as number of successors in current region.
2010-01-14 Alexander Monakov <amonakov@ispras.ru>
* sel-sched.c (maybe_emit_renaming_copy): Exit early when expression
......
......@@ -2752,8 +2752,7 @@ compute_av_set_at_bb_end (insn_t insn, ilist_t p, int ws)
VEC_index (int, sinfo->probs_ok, is),
sinfo->all_prob);
if (sinfo->all_succs_n > 1
&& sinfo->all_succs_n == sinfo->succs_ok_n)
if (sinfo->all_succs_n > 1)
{
/* Find EXPR'es that came from *all* successors and save them
into expr_in_all_succ_branches. This set will be used later
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment