(LEGITIMIZE_ADDRESS): Add missing args to calls to expand_binop.
authorRichard Kenner <kenner@gcc.gnu.org>
Fri, 26 Feb 1993 11:17:58 +0000 (06:17 -0500)
committerRichard Kenner <kenner@gcc.gnu.org>
Fri, 26 Feb 1993 11:17:58 +0000 (06:17 -0500)
From-SVN: r3539

gcc/config/alpha/alpha.h

index 8de0adc37ec9a3bae310132459c5bb97afcf31d6..a743989250ad9f97e5c9aa3c6d90bc4235034c8c 100644 (file)
@@ -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;                                                        \
     }                                                          \