Commit 6f20793d by Herman A.J. ten Brugge Committed by Jeff Law

reorg.c (relax_delay_slots): Fixed test for mostly_true_jump.

        * reorg.c (relax_delay_slots): Fixed test for mostly_true_jump. The
        did not match the code.

From-SVN: r23239
parent 1938bea6
1998-10-23 Herman A.J. ten Brugge <Haj.Ten.Brugge@net.HCC.nl>
* reorg.c (relax_delay_slots): Fixed test for mostly_true_jump. The
did not match the code.
Fri Oct 23 00:07:01 1998 Bernd Schmidt <crux@pool.informatik.rwth-aachen.de> Fri Oct 23 00:07:01 1998 Bernd Schmidt <crux@pool.informatik.rwth-aachen.de>
* regclass.c (regclass): Break out some code into new function * regclass.c (regclass): Break out some code into new function
......
...@@ -4164,7 +4164,7 @@ relax_delay_slots (first) ...@@ -4164,7 +4164,7 @@ relax_delay_slots (first)
&& (other = prev_active_insn (insn)) != 0 && (other = prev_active_insn (insn)) != 0
&& (condjump_p (other) || condjump_in_parallel_p (other)) && (condjump_p (other) || condjump_in_parallel_p (other))
&& no_labels_between_p (other, insn) && no_labels_between_p (other, insn)
&& 0 < mostly_true_jump (other, && 0 > mostly_true_jump (other,
get_branch_condition (other, get_branch_condition (other,
JUMP_LABEL (other)))) JUMP_LABEL (other))))
{ {
......
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