diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1994-07-07 17:53:06 -0400 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1994-07-07 17:53:06 -0400 |
commit | 41b19f3e7006fa8ce67e1d09fed29dc451c2e0a3 (patch) | |
tree | 8b374c0c0a912c33a53d95c591aa1f1097c88df0 /gcc/optabs.c | |
parent | 531d389df19d39a50c6fea0f4ba1a42cf01a09bc (diff) | |
download | gcc-41b19f3e7006fa8ce67e1d09fed29dc451c2e0a3.zip gcc-41b19f3e7006fa8ce67e1d09fed29dc451c2e0a3.tar.gz gcc-41b19f3e7006fa8ce67e1d09fed29dc451c2e0a3.tar.bz2 |
(expand_binop, case DIV [complex]): Fix typo in last change.
From-SVN: r7675
Diffstat (limited to 'gcc/optabs.c')
-rw-r--r-- | gcc/optabs.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gcc/optabs.c b/gcc/optabs.c index df2f8c9..79f4768 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; |