Commit 037e3d1f by Richard Henderson Committed by Richard Henderson

* ifcvt.c (dead_or_predicable): Fix return value last patch.

From-SVN: r43357
parent 7c301abf
2001-06-13 Richard Henderson <rth@redhat.com>
* ifcvt.c (dead_or_predicable): Fix return value last patch.
2001-06-13 Mark Mitchell <mark@codesourcery.com> 2001-06-13 Mark Mitchell <mark@codesourcery.com>
* NEWS: Remove. * NEWS: Remove.
......
...@@ -2283,7 +2283,7 @@ dead_or_predicable (test_bb, merge_bb, other_bb, new_dest, reversep) ...@@ -2283,7 +2283,7 @@ dead_or_predicable (test_bb, merge_bb, other_bb, new_dest, reversep)
{ {
enum rtx_code rev = reversed_comparison_code (cond, jump); enum rtx_code rev = reversed_comparison_code (cond, jump);
if (rev == UNKNOWN) if (rev == UNKNOWN)
return NULL_RTX; return FALSE;
cond = gen_rtx_fmt_ee (rev, GET_MODE (cond), XEXP (cond, 0), cond = gen_rtx_fmt_ee (rev, GET_MODE (cond), XEXP (cond, 0),
XEXP (cond, 1)); XEXP (cond, 1));
if (prob_val) if (prob_val)
......
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