Commit 80f251fe by Richard Kenner

(LEGITIMIZE_ADDRESS): Add missing args to calls to expand_binop.

From-SVN: r3539
parent 7cbfceab
...@@ -1104,7 +1104,7 @@ extern char *current_function_name; ...@@ -1104,7 +1104,7 @@ extern char *current_function_name;
HOST_WIDE_INT highpart = val - lowpart; \ HOST_WIDE_INT highpart = val - lowpart; \
rtx high = GEN_INT (highpart); \ rtx high = GEN_INT (highpart); \
rtx temp = expand_binop (Pmode, add_optab, XEXP (x, 0), \ 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); \ (X) = plus_constant (temp, lowpart); \
goto WIN; \ goto WIN; \
...@@ -1139,7 +1139,7 @@ extern char *current_function_name; ...@@ -1139,7 +1139,7 @@ extern char *current_function_name;
\ \
high = expand_binop (Pmode, add_optab, XEXP (X, 0), \ high = expand_binop (Pmode, add_optab, XEXP (X, 0), \
force_reg (Pmode, high), \ force_reg (Pmode, high), \
high, OPTAB_LIB_WIDEN); \ high, 1, OPTAB_LIB_WIDEN); \
(X) = plus_constant (high, lowpart); \ (X) = plus_constant (high, lowpart); \
goto WIN; \ goto WIN; \
} \ } \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment