diff options
author | zack <zack@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-10-11 00:18:02 +0000 |
---|---|---|
committer | zack <zack@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-10-11 00:18:02 +0000 |
commit | 08985aff434169721ca5c48796a36c902265b566 (patch) | |
tree | 5269637c07816870a919120837e9ac717724d3fe /gcc/machmode.h | |
parent | 21ca86aea331e514dd9c63516c4c669fbd7d1f92 (diff) | |
download | gcc-08985aff434169721ca5c48796a36c902265b566.tar.gz |
* gengenrtl.c (find_formats, genheader): Make i an unsigned
int, remove cast of NUM_RTX_CODE.
* machmode.h: Make the HAVE_MACHINE_MODES #ifdef encompass the
entire file. Remove the #ifs on GET_MODE_MASK etc and
GET_MODE_WIDER_MODE etc.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@72321 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/machmode.h')
-rw-r--r-- | gcc/machmode.h | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/gcc/machmode.h b/gcc/machmode.h index 4c4086c312d..04b2de16753 100644 --- a/gcc/machmode.h +++ b/gcc/machmode.h @@ -97,10 +97,6 @@ extern const unsigned char mode_unit_size[NUM_MACHINE_MODES]; extern const unsigned short mode_bitsize[NUM_MACHINE_MODES]; #define GET_MODE_BITSIZE(MODE) mode_bitsize[MODE] -#endif /* not HAVE_MACHINE_MODES */ - -#if defined HOST_WIDE_INT && ! defined GET_MODE_MASK - /* Get a bitmask containing 1 for all bits in a word that fit within mode MODE. */ @@ -114,11 +110,6 @@ extern const unsigned char mode_inner[NUM_MACHINE_MODES]; #define GET_MODE_INNER(MODE) mode_inner[MODE] -#endif /* defined (HOST_WIDE_INT) && ! defined GET_MODE_MASK */ - -#if ! defined GET_MODE_WIDER_MODE || ! defined GET_MODE_ALIGNMENT \ - || ! defined GET_CLASS_NARROWEST_MODE - /* Get the next wider natural mode (eg, QI -> HI -> SI -> DI -> TI). */ extern const unsigned char mode_wider[NUM_MACHINE_MODES]; @@ -166,5 +157,4 @@ extern enum machine_mode byte_mode; extern enum machine_mode word_mode; extern enum machine_mode ptr_mode; -#endif /* ! defined GET_MODE_WIDER_MODE || ! defined GET_MODE_ALIGNMENT - || ! defined GET_CLASS_NARROWEST_MODE */ +#endif /* not HAVE_MACHINE_MODES */ |