summaryrefslogtreecommitdiff
path: root/gcc/sbitmap.h
diff options
context:
space:
mode:
authorlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>2000-02-11 09:49:40 +0000
committerlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>2000-02-11 09:49:40 +0000
commit75cee6671f21c4048049244c2283412a3c67453a (patch)
treee612337429d85af1d443dfc8fa5c2c273b0b4bf0 /gcc/sbitmap.h
parentd0da7c54c702ac29251b7bc1758d3d103a46d2d3 (diff)
downloadgcc-75cee6671f21c4048049244c2283412a3c67453a.tar.gz
* sbitmap.h: Make SBITMAP_ELT_BITS unsigned.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@31912 138bc75d-0d04-0410-961f-82ee72b054a4
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 {