From 0b6808320905d6249e65267870b4a0cc0b0f678f Mon Sep 17 00:00:00 2001 From: Nathan Sidwell Date: Tue, 20 Nov 2018 15:54:12 +0000 Subject: [PATCH] re PR tree-optimization/87926 (bad array-index warning breaks --disable-checking bootstrap) PR 87926 * Makefile.in (bitmap.o-warn): Use -Wno-error=array-bounds. From-SVN: r266319 --- gcc/ChangeLog | 5 +++++ gcc/Makefile.in | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 042075e628b..d9af1e50781 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2018-11-20 Nathan Sidwell + + PR 87926 + * Makefile.in (bitmap.o-warn): Use -Wno-error=array-bounds. + 2018-11-20 Jan Hubicka PR lto/87997 diff --git a/gcc/Makefile.in b/gcc/Makefile.in index ec793175c3b..cf9fcb3b8f4 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -221,7 +221,7 @@ 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 # PR 87926 +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 -- 2.30.2