diff options
author | Nathan Sidwell <nathan@acm.org> | 2018-11-20 15:54:12 +0000 |
---|---|---|
committer | Nathan Sidwell <nathan@gcc.gnu.org> | 2018-11-20 15:54:12 +0000 |
commit | 0b6808320905d6249e65267870b4a0cc0b0f678f (patch) | |
tree | 81d940d9a3ee8b7f12e7e03a300d587adcb119ab /gcc/Makefile.in | |
parent | 375c3b863cfa30db17df0259a423ade00961c974 (diff) | |
download | gcc-0b6808320905d6249e65267870b4a0cc0b0f678f.zip gcc-0b6808320905d6249e65267870b4a0cc0b0f678f.tar.gz gcc-0b6808320905d6249e65267870b4a0cc0b0f678f.tar.bz2 |
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
Diffstat (limited to 'gcc/Makefile.in')
-rw-r--r-- | gcc/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/Makefile.in b/gcc/Makefile.in index ec79317..cf9fcb3 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 |