Commit fdb5537f by Richard Kenner

(negate_rtx): Fix typo in previous change.

From-SVN: r11624
parent 144a3150
......@@ -187,7 +187,7 @@ negate_rtx (mode, x)
{
rtx result = simplify_unary_operation (NEG, mode, x, mode);
if (result = 0)
if (result == 0)
result = expand_unop (mode, neg_optab, x, NULL_RTX, 0);
return result;
......
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