This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from 00df003cb0a RISC-V: Build soft-float divide routines for -mno-fdiv. new bfff07299b9 PR middle-end/91679 - missing -Warray-bounds accessing a me [...]
The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: gcc/ChangeLog | 23 ++ gcc/c-family/c-pretty-print.c | 18 +- gcc/c-family/c.opt | 4 + gcc/doc/invoke.texi | 29 ++ gcc/gimple-match-head.c | 4 +- gcc/testsuite/ChangeLog | 16 + gcc/testsuite/c-c++-common/Warray-bounds-2.c | 10 +- gcc/testsuite/g++.dg/warn/Warray-bounds-8.C | 32 +- gcc/testsuite/gcc.dg/Warray-bounds-46.c | 22 +- gcc/testsuite/gcc.dg/Warray-bounds-48.c | 363 +++++++++++++++++++++++ gcc/testsuite/gcc.dg/Warray-bounds-49.c | 115 +++++++ gcc/testsuite/gcc.dg/Wstringop-overflow-16.c | 4 +- gcc/testsuite/gcc.dg/Wstringop-overflow-21.c | 59 ++++ gcc/testsuite/gcc.dg/Wzero-length-array-bounds.c | 88 ++++++ gcc/testsuite/gcc.dg/pr36902.c | 2 +- gcc/testsuite/gcc.dg/strlenopt-57.c | 2 +- gcc/tree-vrp.c | 108 +++++-- gcc/tree.c | 225 ++++++++++++-- gcc/tree.h | 2 +- gcc/wide-int.h | 2 + 20 files changed, 1020 insertions(+), 108 deletions(-) create mode 100644 gcc/testsuite/gcc.dg/Warray-bounds-48.c create mode 100644 gcc/testsuite/gcc.dg/Warray-bounds-49.c create mode 100644 gcc/testsuite/gcc.dg/Wstringop-overflow-21.c create mode 100644 gcc/testsuite/gcc.dg/Wzero-length-array-bounds.c