]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
* sbitmap.h: Make SBITMAP_ELT_BITS unsigned.
authorBrad Lucier <lucier@math.purdue.edu>
Fri, 11 Feb 2000 09:49:40 +0000 (09:49 +0000)
committerJeff Law <law@gcc.gnu.org>
Fri, 11 Feb 2000 09:49:40 +0000 (02:49 -0700)
From-SVN: r31912

gcc/ChangeLog
gcc/sbitmap.h

index 8ef3ce207054a07fd0dbc8a9792862e7de5b3f73..cd87f2f17e09b2a1473c03e573fb33bbd9a4499d 100644 (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>
        
        * config/c4x/c4x.c (fp_zero_operand): Check for CONST_DOUBLE.
index 5992e03bd1120ce99ce07f4aba3ba576d2d7c9e8..41d8324d35a1074da6de54ea70cff9d15f1e5df8 100644 (file)
@@ -25,7 +25,7 @@ Boston, MA 02111-1307, USA.  */
    It should be straightforward to convert so for now we keep things simple
    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
 
 typedef struct simple_bitmap_def {