From 41b19f3e7006fa8ce67e1d09fed29dc451c2e0a3 Mon Sep 17 00:00:00 2001 From: Richard Kenner Date: Thu, 7 Jul 1994 17:53:06 -0400 Subject: [PATCH] (expand_binop, case DIV [complex]): Fix typo in last change. From-SVN: r7675 --- gcc/optabs.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/gcc/optabs.c b/gcc/optabs.c index df2f8c94ea3..79f47681c30 100644 --- a/gcc/optabs.c +++ b/gcc/optabs.c @@ -1410,8 +1410,10 @@ expand_binop (mode, binoptab, op0, op1, target, unsignedp, methods) NULL_RTX, unsignedp, methods); if (temp1 == 0 || temp2 == 0) - imag_t = expand_binop (submode, sub_optab, temp1, temp2, - NULL_RTX, unsignedp, methods); + break; + + imag_t = expand_binop (submode, sub_optab, temp1, temp2, + NULL_RTX, unsignedp, methods); if (real_t == 0 || imag_t == 0) break; -- 2.30.2