Commit a5da0afe by Richard Kenner

(ALPHA_COSTS): Add missing arg to call to rtx_cost.

From-SVN: r5716
parent 4c002f29
...@@ -1310,7 +1310,8 @@ extern char *current_function_name; ...@@ -1310,7 +1310,8 @@ extern char *current_function_name;
return COSTS_N_INSNS (6); \ return COSTS_N_INSNS (6); \
else if (GET_CODE (XEXP (X, 0)) == MULT \ else if (GET_CODE (XEXP (X, 0)) == MULT \
&& const48_operand (XEXP (XEXP (X, 0), 1), VOIDmode)) \ && const48_operand (XEXP (XEXP (X, 0), 1), VOIDmode)) \
return 2 + rtx_cost (XEXP (XEXP (X, 0), 0)) + rtx_cost (XEXP (X, 1)); \ return (2 + rtx_cost (XEXP (XEXP (X, 0), 0), OUTER_CODE) \
+ rtx_cost (XEXP (X, 1), OUTER_CODE)); \
break; \ break; \
case MULT: \ case MULT: \
if (GET_MODE_CLASS (GET_MODE (X)) == MODE_FLOAT) \ if (GET_MODE_CLASS (GET_MODE (X)) == MODE_FLOAT) \
......
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