summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gcc/ChangeLog2
-rw-r--r--gcc/bitmap.h2
2 files changed, 3 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 65f2ac92356..0e90c5bfcce 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,5 +1,7 @@
Sat Jan 23 01:37:36 1999 Jeffrey A Law (law@cygnus.com)
+ * bitmap.h (bitmap_head_def): Make indx field unsigned.
+
* configure.in (gcc_tooldir): When not making a relative gcc_tooldir,
use $exec_prefix/$target_alias for gcc_tooldir.
diff --git a/gcc/bitmap.h b/gcc/bitmap.h
index 6f3dfa6aa95..9a3e3e2bbb5 100644
--- a/gcc/bitmap.h
+++ b/gcc/bitmap.h
@@ -48,7 +48,7 @@ typedef struct bitmap_element_def
typedef struct bitmap_head_def {
bitmap_element *first; /* First element in linked list. */
bitmap_element *current; /* Last element looked at. */
- int indx; /* Index of last element looked at. */
+ unsigned int indx; /* Index of last element looked at. */
} bitmap_head, *bitmap;
/* Enumeration giving the various operations we support. */