This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch devel/c++-coroutines in repository gcc.
from fae469a8503 Merge master r11-7178. adds 1f5c80883ef libcpp: fix ICE comparing macro locations without column in [...] adds 21c6ad7a12f Add test for PR tree-optimization/92879. adds 4b37c3ea8ab Daily bump. adds 27a804bc628 c, c++: Plug -Wduplicated-cond memory leaks [PR99057] adds 19c02324102 libgfortran: Fix unwanted end-of-record by checking if seen [...] adds a5c4f5562a0 use -mfpu=auto for arm/simd/vmmla_1.c adds 2e9dfa4bff2 Fortran: intrinsic.texi add missing arg to FINDLOC adds 5ee5415af86 Fortran: Fix ICE after error regression [PR99060]. adds 22a6d99d0a0 reduce sparseset memory requirement adds ff6903288d9 Fortran: Fix calls to associate name typebound subroutines [...] adds 4af29981ab5 [aarch64][vect] Support V8QI->V8HI WIDEN_ patterns adds 38c5703449c arm: Low overhead loop handle long range branches [PR98931] adds cb168f779c8 c++: Fix ICE from op_unqualified_lookup [PR97582] adds f0da1c0cb76 c++: ICE with unexpanded pack in do-while [PR99063] adds 2dcdd15d0ba c++: Fix zero initialization of flexible array members [PR99033] adds ce43c906049 libstdc++: Document when C++11/14/17 support became stable [...] adds bc0f7db7ebb libstdc++: Fix versioned namespace build new ad4486c9bd0 Merge master r11-7195.
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 | 76 ++++++++++ gcc/DATESTAMP | 2 +- gcc/c-family/ChangeLog | 4 + gcc/c/c-parser.c | 18 +-- gcc/config/arm/thumb2.md | 28 ++-- gcc/cp/ChangeLog | 16 +++ gcc/cp/init.c | 20 +-- gcc/cp/name-lookup.c | 14 +- gcc/cp/parser.c | 27 ++-- gcc/cp/semantics.c | 5 + gcc/fortran/ChangeLog | 6 + gcc/fortran/intrinsic.texi | 10 +- gcc/fortran/match.c | 14 +- gcc/fortran/primary.c | 12 +- gcc/fwprop.c | 1 - gcc/optabs-tree.c | 69 +++++++++ gcc/optabs-tree.h | 3 + gcc/sparseset.h | 5 +- gcc/testsuite/ChangeLog | 49 +++++++ .../g++.dg/cpp0x/lambda/lambda-template17.C | 12 ++ gcc/testsuite/g++.dg/cpp0x/variadic-crash6.C | 16 +++ gcc/testsuite/g++.dg/ext/flexary38.C | 18 +++ .../g++.dg/plugin/location-overflow-test-pr96391.c | 12 ++ gcc/testsuite/g++.dg/plugin/plugin.exp | 2 + gcc/testsuite/g++.dg/warn/Warray-bounds-16.C | 29 ++++ gcc/testsuite/gcc.target/aarch64/pr98772.c | 155 +++++++++++++++++++++ gcc/testsuite/gcc.target/arm/pr98931.c | 17 +++ gcc/testsuite/gcc.target/arm/simd/vmmla_1.c | 2 +- .../gfortran.dg/dollar_edit_descriptor_4.f | 16 +++ gcc/testsuite/gfortran.dg/pr99060.f90 | 10 ++ gcc/testsuite/gfortran.dg/typebound_call_32.f90 | 39 ++++++ gcc/tree-vect-stmts.c | 95 +++++++++++-- libcpp/ChangeLog | 7 + libcpp/line-map.c | 3 +- libgfortran/io/transfer.c | 2 + libgomp/ChangeLog | 6 + libstdc++-v3/ChangeLog | 24 ++++ libstdc++-v3/doc/html/manual/status.html | 9 ++ libstdc++-v3/doc/xml/manual/status_cxx2011.xml | 3 + libstdc++-v3/doc/xml/manual/status_cxx2014.xml | 3 + libstdc++-v3/doc/xml/manual/status_cxx2017.xml | 3 + libstdc++-v3/libsupc++/eh_ptr.cc | 10 +- libstdc++-v3/libsupc++/exception_ptr.h | 4 +- 43 files changed, 794 insertions(+), 82 deletions(-) create mode 100644 gcc/testsuite/g++.dg/cpp0x/lambda/lambda-template17.C create mode 100644 gcc/testsuite/g++.dg/cpp0x/variadic-crash6.C create mode 100644 gcc/testsuite/g++.dg/ext/flexary38.C create mode 100644 gcc/testsuite/g++.dg/plugin/location-overflow-test-pr96391.c create mode 100644 gcc/testsuite/g++.dg/warn/Warray-bounds-16.C create mode 100644 gcc/testsuite/gcc.target/aarch64/pr98772.c create mode 100644 gcc/testsuite/gcc.target/arm/pr98931.c create mode 100644 gcc/testsuite/gfortran.dg/dollar_edit_descriptor_4.f create mode 100644 gcc/testsuite/gfortran.dg/pr99060.f90 create mode 100644 gcc/testsuite/gfortran.dg/typebound_call_32.f90