Commit 9797b9e8 by Richard Stallman

*** empty log message ***

From-SVN: r1142
parent 6a5293dc
...@@ -3085,7 +3085,9 @@ subst (x, from, to, in_dest, unique_copy) ...@@ -3085,7 +3085,9 @@ subst (x, from, to, in_dest, unique_copy)
/* If we have (if_then_else FOO (pc) (label_ref BAR)) and FOO can be /* If we have (if_then_else FOO (pc) (label_ref BAR)) and FOO can be
reversed, do so to avoid needing two sets of patterns for reversed, do so to avoid needing two sets of patterns for
subtract-and-branch insns. */ subtract-and-branch insns. */
if (XEXP (x, 1) == pc_rtx && reversible_comparison_p (XEXP (x, 0))) if (XEXP (x, 1) == pc_rtx
&& GET_RTX_CLASS (GET_CODE (XEXP (x, 0))) == '<'
&& reversible_comparison_p (XEXP (x, 0)))
{ {
SUBST (XEXP (x, 0), SUBST (XEXP (x, 0),
gen_rtx_combine (reverse_condition (GET_CODE (XEXP (x, 0))), gen_rtx_combine (reverse_condition (GET_CODE (XEXP (x, 0))),
......
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