entered into RCS
authorCharles Hannum <mycroft@gnu.org>
Sat, 18 Apr 1992 19:55:56 +0000 (19:55 +0000)
committerCharles Hannum <mycroft@gnu.org>
Sat, 18 Apr 1992 19:55:56 +0000 (19:55 +0000)
From-SVN: r781

gcc/config/arm/arm.h
gcc/config/fx80/fx80.h
gcc/config/gmicro/gmicro.h
gcc/config/spur/spur.h

index d54aef8560b1c5742bdcdb551cdccfef0a56c71c..b6fad6cbb0785b091c82ebb37a4aab59d5cab923 100644 (file)
@@ -891,7 +891,7 @@ do \
 
 /* The relative costs of various types of constants.  Note that cse.c defines
    REG = 1, SUBREG = 2, any node = (2 + sum of subnodes).  */
-#define CONST_COSTS(RTX, CODE)  \
+#define CONST_COSTS(RTX, CODE, OUTER_CODE)  \
   case CONST_INT:                              \
     if (const_ok_for_arm (INTVAL (RTX)))       \
       return (2);                              \
index 80839f33c62abbdd3a57a5cb9e00d6b21cd36eea..01f738dfff247f9153cecfb7dbf5a15062e912e2 100644 (file)
@@ -870,7 +870,7 @@ extern enum reg_class regno_reg_class[];
    of a switch statement.  If the code is computed here,
    return it with a return statement.  Otherwise, break from the switch.  */
 
-#define CONST_COSTS(RTX,CODE) \
+#define CONST_COSTS(RTX,CODE,OUTER_CODE) \
   case CONST_INT:                                              \
     /* Constant zero is super cheap due to clr instruction.  */        \
     if (RTX == const0_rtx) return 0;                           \
index 24c4f50ab5812a8a39a8c6042563086a9034397f..b726246019f4712174ea3103a01e33206a8fc6f3 100644 (file)
@@ -1177,7 +1177,7 @@ extern enum reg_class regno_reg_class[];
    of a switch statement.  If the code is computed here,
    return it with a return statement.  Otherwise, break from the switch.  */
 
-#define CONST_COSTS(RTX,CODE) \
+#define CONST_COSTS(RTX,CODE,OUTER_CODE) \
   case CONST_INT:                                              \
     if ((unsigned) INTVAL (RTX) < 8) return 0;                 \
     if ((unsigned) (INTVAL (RTX) + 0x80) < 0x100) return 1;    \
index bf6d347d227912a698bcd9ef1b4d041abe138acb..49fbb7c27098d0187997e93715fdf4b28abe2ca4 100644 (file)
@@ -774,7 +774,7 @@ extern int current_function_pretend_args_size;
    of a switch statement.  If the code is computed here,
    return it with a return statement.  Otherwise, break from the switch.  */
 
-#define CONST_COSTS(RTX,CODE) \
+#define CONST_COSTS(RTX,CODE,OUTER_CODE) \
   case CONST_INT:                                              \
     if (INTVAL (RTX) < 0x2000 && INTVAL (RTX) >= -0x2000) return 1; \
   case CONST:                                                  \