Commit 6ffeae97 by Jim Wilson

(RTX_COSTS): Make cost of MULT depend on TARGET_V8.

From-SVN: r4650
parent d4d7b398
......@@ -1471,7 +1471,7 @@ extern struct rtx_def *legitimize_pic_address ();
#define RTX_COSTS(X,CODE,OUTER_CODE) \
case MULT: \
return COSTS_N_INSNS (25); \
return TARGET_V8 ? COSTS_N_INSNS (5) : COSTS_N_INSNS (25); \
case DIV: \
case UDIV: \
case MOD: \
......
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