diff options
author | Richard Stallman <rms@gnu.org> | 1992-05-14 17:37:32 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1992-05-14 17:37:32 +0000 |
commit | d41293632f1daa8d75e212f63e6eb84856780492 (patch) | |
tree | 6d126d55de87b798f9e396f600462d1f6db9ce8a | |
parent | b96806f679f892e68261cc25e907a524e46f885c (diff) | |
download | gcc-d41293632f1daa8d75e212f63e6eb84856780492.zip gcc-d41293632f1daa8d75e212f63e6eb84856780492.tar.gz gcc-d41293632f1daa8d75e212f63e6eb84856780492.tar.bz2 |
*** empty log message ***
From-SVN: r972
-rw-r--r-- | gcc/config/i860/i860.h | 2 | ||||
-rw-r--r-- | gcc/config/we32k/we32k.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/i860/i860.h b/gcc/config/i860/i860.h index c10bce4..dd2c6a8 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 3402414..e1c9ff3 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: \ |