Commit bd103b48 by Torbjorn Granlund

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

From-SVN: r4637
parent 63610db9
...@@ -1459,7 +1459,7 @@ while (0) ...@@ -1459,7 +1459,7 @@ while (0)
#define RTX_COSTS(X,CODE,OUTER_CODE) \ #define RTX_COSTS(X,CODE,OUTER_CODE) \
case MULT: \ case MULT: \
return COSTS_N_INSNS (20); \ return TARGET_SNAKE ? COSTS_N_INSNS (8) : COSTS_N_INSNS (20); \
case DIV: \ case DIV: \
case UDIV: \ case UDIV: \
case MOD: \ 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