diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1994-07-28 19:28:18 -0400 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1994-07-28 19:28:18 -0400 |
commit | 1c63cc82d44816112e4dfdd0c7fbf24db20a0e2a (patch) | |
tree | befe98f20fdfa56e817989dd9b56aa8bef745f6e /gcc/optabs.c | |
parent | bdbfbe18fce966f76d4c34ed47f0ba12f6ca7d21 (diff) | |
download | gcc-1c63cc82d44816112e4dfdd0c7fbf24db20a0e2a.tar.gz |
(expand_binop, case MULT [complex]) Fix typo.
From-SVN: r7813
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 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; |