From 80f251fec1abf16d7443e88033ad5a285f3d0e93 Mon Sep 17 00:00:00 2001 From: Richard Kenner Date: Fri, 26 Feb 1993 06:17:58 -0500 Subject: [PATCH] (LEGITIMIZE_ADDRESS): Add missing args to calls to expand_binop. From-SVN: r3539 --- gcc/config/alpha/alpha.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gcc/config/alpha/alpha.h b/gcc/config/alpha/alpha.h index 8de0adc37ec..a743989250a 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; \ } \ -- 2.30.2