]> gcc.gnu.org Git - gcc.git/commitdiff
(RTX_COSTS): Make cost of MULT depend on TARGET_SNAKE.
authorTorbjorn Granlund <tege@gnu.org>
Sat, 5 Jun 1993 10:01:17 +0000 (10:01 +0000)
committerTorbjorn Granlund <tege@gnu.org>
Sat, 5 Jun 1993 10:01:17 +0000 (10:01 +0000)
From-SVN: r4637

gcc/config/pa/pa.h

index 1741eaf68a58f6a7340a045a56fd60f616d75c51..0c674668d3e1e50346df404e88c3c69bab20416a 100644 (file)
@@ -1459,7 +1459,7 @@ while (0)
 
 #define RTX_COSTS(X,CODE,OUTER_CODE)                   \
   case MULT:                                           \
-    return COSTS_N_INSNS (20);                         \
+    return TARGET_SNAKE ? COSTS_N_INSNS (8) : COSTS_N_INSNS (20);      \
   case DIV:                                            \
   case UDIV:                                           \
   case MOD:                                            \
This page took 0.072459 seconds and 5 git commands to generate.