diff options
author | Richard Stallman <rms@gnu.org> | 1993-02-26 03:50:10 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1993-02-26 03:50:10 +0000 |
commit | 58f066d149a4ad29a6e19f9ec11e2a66ed027149 (patch) | |
tree | ea97b59cc32b7f1320a795cb7d679f937b51f49c /gcc | |
parent | cb411bd66be0c301c60bf2d7f69991bc115c59a7 (diff) | |
download | gcc-58f066d149a4ad29a6e19f9ec11e2a66ed027149.zip gcc-58f066d149a4ad29a6e19f9ec11e2a66ed027149.tar.gz gcc-58f066d149a4ad29a6e19f9ec11e2a66ed027149.tar.bz2 |
(jump_optimize): Add missing parameter in expand_binop call.
From-SVN: r3537
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/jump.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1258,7 +1258,7 @@ jump_optimize (f, cross_jump, noop_moves, after_regscan) target = expand_binop (GET_MODE (temp2), (XEXP (SET_SRC (temp1), 1) == const1_rtx ? add_optab : sub_optab), - temp2, target, temp2, OPTAB_WIDEN); + temp2, target, temp2, 0, OPTAB_WIDEN); if (target != 0) { |