Commit 1c63cc82 by Richard Kenner

(expand_binop, case MULT [complex]) Fix typo.

From-SVN: r7813
parent bdbfbe18
......@@ -1260,8 +1260,10 @@ expand_binop (mode, binoptab, op0, op1, target, unsignedp, methods)
NULL_RTX, unsignedp, methods);
if (temp1 == 0 || temp2 == 0)
res = expand_binop (submode, add_optab, temp1, temp2,
imagr, unsignedp, methods);
break;
res = expand_binop (submode, add_optab, temp1, temp2,
imagr, unsignedp, methods);
if (res == 0)
break;
......
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