Commit c8c1bde3 by Richard Kenner

(emit_store_flag): Fix typo in testing BRANCH_COST.

From-SVN: r3533
parent 705c7b3b
...@@ -2960,7 +2960,7 @@ emit_store_flag (target, code, op0, op1, mode, unsignedp, normalizep) ...@@ -2960,7 +2960,7 @@ emit_store_flag (target, code, op0, op1, mode, unsignedp, normalizep)
comparison with zero. Don't do any of these cases if branches are comparison with zero. Don't do any of these cases if branches are
very cheap. */ very cheap. */
if (BRANCH_COST >= 0 if (BRANCH_COST > 0
&& GET_MODE_CLASS (mode) == MODE_INT && (code == EQ || code == NE) && GET_MODE_CLASS (mode) == MODE_INT && (code == EQ || code == NE)
&& op1 != const0_rtx) && op1 != const0_rtx)
{ {
......
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