diff options
author | Michael Meissner <meissner@gcc.gnu.org> | 1992-04-18 19:55:42 +0000 |
---|---|---|
committer | Michael Meissner <meissner@gcc.gnu.org> | 1992-04-18 19:55:42 +0000 |
commit | def9623c20edb10be93391abe9a3c8c7e5788bb5 (patch) | |
tree | 468f5bcc7828e207dd2bc6081bd7a55294d0e387 | |
parent | aeedc93fbae3f9aa761121167020569b65fb01d9 (diff) | |
download | gcc-def9623c20edb10be93391abe9a3c8c7e5788bb5.zip gcc-def9623c20edb10be93391abe9a3c8c7e5788bb5.tar.gz gcc-def9623c20edb10be93391abe9a3c8c7e5788bb5.tar.bz2 |
*** empty log message ***
From-SVN: r780
-rw-r--r-- | gcc/config/mips/mips.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/mips/mips.h b/gcc/config/mips/mips.h index 98e07b9..866ce6f 100644 --- a/gcc/config/mips/mips.h +++ b/gcc/config/mips/mips.h @@ -2193,7 +2193,7 @@ while (0) CODE is the expression code--redundant, since it can be obtained with `GET_CODE (X)'. */ -#define CONST_COSTS(X,CODE) \ +#define CONST_COSTS(X,CODE,OUTER_CODE) \ case CONST_INT: \ /* Always return 0, since we don't have different sized \ instructions, hence different costs according to Richard \ @@ -2243,7 +2243,7 @@ while (0) strength reduction, and also makes it easier to identify what the compiler is doing. */ -#define RTX_COSTS(X,CODE) \ +#define RTX_COSTS(X,CODE,OUTER_CODE) \ case MEM: \ { \ int num_words = (GET_MODE_SIZE (GET_MODE (X)) > UNITS_PER_WORD) ? 2 : 1; \ |