re PR bootstrap/88133 (Build fails with host GCC < 4.3)
authorRichard Biener <rguenther@suse.de>
Wed, 21 Nov 2018 14:19:17 +0000 (14:19 +0000)
committerRichard Biener <rguenth@gcc.gnu.org>
Wed, 21 Nov 2018 14:19:17 +0000 (14:19 +0000)
2018-11-21  Richard Biener  <rguenther@suse.de>

PR bootstrap/88133
* bitmap.c (bitmap_last_set_bit): Refactor to avoid warning.
* Makefile.in (bitmap.o-warn): Remove again.

From-SVN: r266344

gcc/ChangeLog
gcc/Makefile.in
gcc/bitmap.c

index 967967641f38208fc26e7cf853990064d58e4774..2e0be88327f42ec99f4fde4d01b2438b3140f8e0 100644 (file)
@@ -1,3 +1,9 @@
+2018-11-21  Richard Biener  <rguenther@suse.de>
+
+       PR bootstrap/88133
+       * bitmap.c (bitmap_last_set_bit): Refactor to avoid warning.
+       * Makefile.in (bitmap.o-warn): Remove again.
+
 2018-11-20  Jeff Law  <law@redhat.com>
 
        PR tree-optimization/88069
index cf9fcb3b8f426bb1685605a2c67ebdf80e0a92d7..881487b083989becb68e9b0fb60b2f1d41dcf880 100644 (file)
@@ -221,7 +221,6 @@ libgcov-merge-tool.o-warn = -Wno-error
 gimple-match.o-warn = -Wno-unused
 generic-match.o-warn = -Wno-unused
 dfp.o-warn = -Wno-strict-aliasing
-bitmap.o-warn = -Wno-error=array-bounds # PR 87926
 
 # All warnings have to be shut off in stage1 if the compiler used then
 # isn't gcc; configure determines that.  WARN_CFLAGS will be either
index c3880ebd81c47037b134556e19e180ea8b5fe7ab..025594400f94e7bab583d18485b0c3ed3535d784 100644 (file)
@@ -1186,13 +1186,13 @@ bitmap_last_set_bit (const_bitmap a)
     elt = elt->next;
 
   bit_no = elt->indx * BITMAP_ELEMENT_ALL_BITS;
-  for (ix = BITMAP_ELEMENT_WORDS - 1; ix >= 0; ix--)
+  for (ix = BITMAP_ELEMENT_WORDS - 1; ix >= 1; ix--)
     {
       word = elt->bits[ix];
       if (word)
        goto found_bit;
     }
-  gcc_unreachable ();
+  gcc_assert (elt->bits[ix] != 0);
  found_bit:
   bit_no += ix * BITMAP_WORD_BITS;
 #if GCC_VERSION >= 3004