summaryrefslogtreecommitdiff
path: root/gcc/sbitmap.h
diff options
context:
space:
mode:
authorBrad Lucier <lucier@math.purdue.edu>2000-02-11 09:49:40 +0000
committerJeff Law <law@gcc.gnu.org>2000-02-11 02:49:40 -0700
commitbe200dff75fe6dc034bc5ed01c5adf2bf4ff18c6 (patch)
treee612337429d85af1d443dfc8fa5c2c273b0b4bf0 /gcc/sbitmap.h
parentb6494a6a949ec75177b38f493be415cb6ec30f2a (diff)
downloadgcc-be200dff75fe6dc034bc5ed01c5adf2bf4ff18c6.tar.gz
* sbitmap.h: Make SBITMAP_ELT_BITS unsigned.
From-SVN: r31912
Diffstat (limited to 'gcc/sbitmap.h')
-rw-r--r--gcc/sbitmap.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/sbitmap.h b/gcc/sbitmap.h
index 5992e03bd11..41d8324d35a 100644
--- a/gcc/sbitmap.h
+++ b/gcc/sbitmap.h
@@ -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 {