diff options
author | Ian Lance Taylor <ian@gcc.gnu.org> | 1996-12-13 01:05:20 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@gcc.gnu.org> | 1996-12-13 01:05:20 +0000 |
commit | 2922fe9ecc6ee2f98ca693bfd47eaf52fcab2e93 (patch) | |
tree | ea457004df6e5bf450528ca178573b5a87337cd0 | |
parent | f95182a4a947cb4edc01f282c7dbfe81502a7914 (diff) | |
download | gcc-2922fe9ecc6ee2f98ca693bfd47eaf52fcab2e93.zip gcc-2922fe9ecc6ee2f98ca693bfd47eaf52fcab2e93.tar.gz gcc-2922fe9ecc6ee2f98ca693bfd47eaf52fcab2e93.tar.bz2 |
Define SMALL_REGISTER_CLASSES with a value
From-SVN: r13303
-rw-r--r-- | gcc/config/dsp16xx/dsp16xx.h | 2 | ||||
-rw-r--r-- | gcc/config/h8300/h8300.h | 2 | ||||
-rw-r--r-- | gcc/config/i386/i386.h | 2 | ||||
-rw-r--r-- | gcc/config/pdp11/pdp11.h | 2 | ||||
-rw-r--r-- | gcc/config/sh/sh.h | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/gcc/config/dsp16xx/dsp16xx.h b/gcc/config/dsp16xx/dsp16xx.h index bee9abb..83a97f8 100644 --- a/gcc/config/dsp16xx/dsp16xx.h +++ b/gcc/config/dsp16xx/dsp16xx.h @@ -946,7 +946,7 @@ enum reg_class rtl to be used as spill registers but prevents the compiler from extending the lifetime of these registers. */ -#define SMALL_REGISTER_CLASSES +#define SMALL_REGISTER_CLASSES 1 /* Macros to check register numbers against specific register classes. */ diff --git a/gcc/config/h8300/h8300.h b/gcc/config/h8300/h8300.h index 0ca5278..8e42f47 100644 --- a/gcc/config/h8300/h8300.h +++ b/gcc/config/h8300/h8300.h @@ -568,7 +568,7 @@ enum reg_class { rtl to be used as spill registers but prevents the compiler from extending the lifetime of these registers. */ -#define SMALL_REGISTER_CLASSES +#define SMALL_REGISTER_CLASSES 1 /* Define a data type for recording info about an argument list during the scan of that argument list. This data type should diff --git a/gcc/config/i386/i386.h b/gcc/config/i386/i386.h index a28c503c..241650f 100644 --- a/gcc/config/i386/i386.h +++ b/gcc/config/i386/i386.h @@ -706,7 +706,7 @@ enum reg_class rtl to be used as spill registers but prevents the compiler from extending the lifetime of these registers. */ -#define SMALL_REGISTER_CLASSES +#define SMALL_REGISTER_CLASSES 1 #define QI_REG_P(X) \ (REG_P (X) && REGNO (X) < 4) diff --git a/gcc/config/pdp11/pdp11.h b/gcc/config/pdp11/pdp11.h index 94da18e..9f755c1 100644 --- a/gcc/config/pdp11/pdp11.h +++ b/gcc/config/pdp11/pdp11.h @@ -378,7 +378,7 @@ enum reg_class { NO_REGS, MUL_REGS, GENERAL_REGS, LOAD_FPU_REGS, NO_LOAD_FPU_REG #define N_REG_CLASSES (int) LIM_REG_CLASSES /* have to allow this till cmpsi/tstsi are fixed in a better way !! */ -#define SMALL_REGISTER_CLASSES +#define SMALL_REGISTER_CLASSES 1 /* Since GENERAL_REGS is the same class as ALL_REGS, don't give it a different class number; just make it an alias. */ diff --git a/gcc/config/sh/sh.h b/gcc/config/sh/sh.h index 8408bc6..c8ffd38 100644 --- a/gcc/config/sh/sh.h +++ b/gcc/config/sh/sh.h @@ -527,7 +527,7 @@ extern int regno_reg_class[]; rtl to be used as spill registers but prevents the compiler from extending the lifetime of these registers. */ -#define SMALL_REGISTER_CLASSES +#define SMALL_REGISTER_CLASSES 1 /* The order in which register should be allocated. */ #define REG_ALLOC_ORDER \ |