* sbitmap.h: Make SBITMAP_ELT_BITS unsigned.

From-SVN: r31912
This commit is contained in:
Brad Lucier 2000-02-11 09:49:40 +00:00 committed by Jeff Law
parent b6494a6a94
commit be200dff75
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
Fri Feb 11 02:48:30 2000 Brad Lucier (lucier@math.purdue.edu)
* sbitmap.h: Make SBITMAP_ELT_BITS unsigned.
2000-02-11 Michael Hayes <m.hayes@elec.canterbury.ac.nz> 2000-02-11 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
* config/c4x/c4x.c (fp_zero_operand): Check for CONST_DOUBLE. * config/c4x/c4x.c (fp_zero_operand): Check for CONST_DOUBLE.

View File

@ -25,7 +25,7 @@ Boston, MA 02111-1307, USA. */
It should be straightforward to convert so for now we keep things simple It should be straightforward to convert so for now we keep things simple
while more important issues are dealt with. */ while more important issues are dealt with. */
#define SBITMAP_ELT_BITS HOST_BITS_PER_WIDE_INT #define SBITMAP_ELT_BITS ((unsigned) HOST_BITS_PER_WIDE_INT)
#define SBITMAP_ELT_TYPE unsigned HOST_WIDE_INT #define SBITMAP_ELT_TYPE unsigned HOST_WIDE_INT
typedef struct simple_bitmap_def { typedef struct simple_bitmap_def {