diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1993-02-26 06:17:58 -0500 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1993-02-26 06:17:58 -0500 |
commit | 80f251fec1abf16d7443e88033ad5a285f3d0e93 (patch) | |
tree | 74787ab0569d1f1d3d89e8fdb800ea437dfd41e3 /gcc | |
parent | 7cbfceab524daac9ebd1657d63592fb6f56152b5 (diff) | |
download | gcc-80f251fec1abf16d7443e88033ad5a285f3d0e93.zip gcc-80f251fec1abf16d7443e88033ad5a285f3d0e93.tar.gz gcc-80f251fec1abf16d7443e88033ad5a285f3d0e93.tar.bz2 |
(LEGITIMIZE_ADDRESS): Add missing args to calls to expand_binop.
From-SVN: r3539
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/alpha/alpha.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/alpha/alpha.h b/gcc/config/alpha/alpha.h index 8de0adc..a743989 100644 --- a/gcc/config/alpha/alpha.h +++ b/gcc/config/alpha/alpha.h @@ -1104,7 +1104,7 @@ extern char *current_function_name; HOST_WIDE_INT highpart = val - lowpart; \ rtx high = GEN_INT (highpart); \ rtx temp = expand_binop (Pmode, add_optab, XEXP (x, 0), \ - high, 0, OPTAB_LIB_WIDEN); \ + high, NULL_RTX, 1, OPTAB_LIB_WIDEN); \ \ (X) = plus_constant (temp, lowpart); \ goto WIN; \ @@ -1139,7 +1139,7 @@ extern char *current_function_name; \ high = expand_binop (Pmode, add_optab, XEXP (X, 0), \ force_reg (Pmode, high), \ - high, OPTAB_LIB_WIDEN); \ + high, 1, OPTAB_LIB_WIDEN); \ (X) = plus_constant (high, lowpart); \ goto WIN; \ } \ |