From: Richard Stallman Date: Thu, 14 May 1992 17:37:32 +0000 (+0000) Subject: *** empty log message *** X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=d41293632f1daa8d75e212f63e6eb84856780492;p=gcc.git *** empty log message *** From-SVN: r972 --- diff --git a/gcc/config/i860/i860.h b/gcc/config/i860/i860.h index c10bce4f2d7..dd2c6a8adb5 100644 --- a/gcc/config/i860/i860.h +++ b/gcc/config/i860/i860.h @@ -896,7 +896,7 @@ struct cumulative_args { int ints, floats; }; 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) == 0) \ return 0; \ diff --git a/gcc/config/we32k/we32k.h b/gcc/config/we32k/we32k.h index 3402414d037..e1c9ff3a4bf 100644 --- a/gcc/config/we32k/we32k.h +++ b/gcc/config/we32k/we32k.h @@ -669,7 +669,7 @@ enum reg_class { NO_REGS, GENERAL_REGS, 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) < 077) return 1; \ case CONST: \