This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from 5c5ce609908 PR fortran/90903 [part2] - Add runtime checking for the MVB [...] new 05193687dde Avoid incidental failures due to implicit attribute access. new 68402af1c68 libgo: don't put golang.org packages in zstdpkglist.go new 7029dfa38b6 c++: Implement -Wctad-maybe-unsupported. new defceb206be c++: DR 1722: Make lambda to function pointer conv noexcept [...] new be3027e9c83 go/internal/gccgoimporter: recognize aixbigafMagic archives new aecea4158f4 libstdc++: Fix constraints for drop_view::begin() const [LWG 3482] new 7db5967f105 libstdc++: Use __builtin_expect in __glibcxx_assert new 15e7b93ba42 analyzer: decls are not on the heap new 1e19ecd79b4 analyzer: fix ICE on bogus decl of memset [PR97130] new 27edc6c3e29 compiler: finalize methods for type aliases of struct types
The 10 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/analyzer/region-model-impl-calls.cc | 8 ++ gcc/analyzer/region-model.cc | 6 +- gcc/analyzer/region-model.h | 1 + gcc/analyzer/sm-malloc.cc | 4 +- gcc/c-family/c.opt | 5 + gcc/cp/lambda.c | 2 + gcc/cp/pt.c | 28 ++++- gcc/doc/invoke.texi | 22 +++- gcc/go/gofrontend/MERGE | 2 +- gcc/go/gofrontend/expressions.cc | 50 ++++---- gcc/go/gofrontend/gogo.cc | 4 + gcc/testsuite/g++.dg/cpp0x/lambda/lambda-conv14.C | 10 ++ .../g++.dg/warn/Wctad-maybe-unsupported.C | 88 ++++++++++++++ .../g++.dg/warn/Wctad-maybe-unsupported.h | 4 + .../g++.dg/warn/Wctad-maybe-unsupported2.C | 6 + .../g++.dg/warn/Wctad-maybe-unsupported3.C | 6 + gcc/testsuite/gcc.dg/analyzer/pr97130.c | 10 ++ gcc/testsuite/gcc.dg/ipa/ipa-sra-1.c | 2 +- gcc/testsuite/gcc.dg/ipa/ipa-sra-12.c | 2 +- gcc/testsuite/gcc.dg/ipa/ipa-sra-13.c | 2 +- gcc/testsuite/gcc.dg/ipa/ipa-sra-14.c | 2 +- gcc/testsuite/gcc.dg/ipa/ipa-sra-15.c | 2 +- libgo/Makefile.am | 2 +- libgo/Makefile.in | 2 +- libgo/go/go/internal/gccgoimporter/importer.go | 2 +- libstdc++-v3/include/bits/c++config | 5 +- libstdc++-v3/include/std/ranges | 17 ++- libstdc++-v3/testsuite/std/ranges/adaptors/drop.cc | 128 +++++++++++++++++++-- 28 files changed, 369 insertions(+), 53 deletions(-) create mode 100644 gcc/testsuite/g++.dg/cpp0x/lambda/lambda-conv14.C create mode 100644 gcc/testsuite/g++.dg/warn/Wctad-maybe-unsupported.C create mode 100644 gcc/testsuite/g++.dg/warn/Wctad-maybe-unsupported.h create mode 100644 gcc/testsuite/g++.dg/warn/Wctad-maybe-unsupported2.C create mode 100644 gcc/testsuite/g++.dg/warn/Wctad-maybe-unsupported3.C create mode 100644 gcc/testsuite/gcc.dg/analyzer/pr97130.c