From: Richard Kenner Date: Thu, 28 Jul 1994 23:28:18 +0000 (-0400) Subject: (expand_binop, case MULT [complex]) Fix typo. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=1c63cc82d44816112e4dfdd0c7fbf24db20a0e2a;p=gcc.git (expand_binop, case MULT [complex]) Fix typo. From-SVN: r7813 --- diff --git a/gcc/optabs.c b/gcc/optabs.c index 427ccf46bb3..89595c72ece 100644 --- a/gcc/optabs.c +++ b/gcc/optabs.c @@ -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;