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 7ae27ea453d Merge master r11-2969. adds 8bc0f24d7a2 rs6000: MMA built-in dies with incorrect sharing of tree no [...] adds 10f51543bb8 libstdc++: Add compile-time checks to__glibcxx_assert [PR 71960] adds b1c59b31ef7 c++: Allow new char[4]{"foo"} [PR77841] adds 0c344a649d8 Use the determined lower bound of the range of offsets in a [...] adds e1a4a8a03f7 Daily bump. adds c9d44022359 bpf: use elfos.h adds 7047a8bab6e bpf: use the default asm_named_section target hook adds 6640a5b9e7c hppa: Improve hppa_rtx_costs for shifts by constants. adds b567d3bd302 fortran: Fix o'...' boz to integer/real conversions [PR96859] adds 6bdbf0f37bd libstdc++: Break header cycle between <new> and <exception> adds d45a6c7099a MSP430: Skip gcc.dg/pr55940.c in the small memory model adds 2f983fa6900 libstdc++: Fix three-way comparison for std::array [PR 96851] new 0edc2c1a244 MSP430: Fix -mlarge documentation to indicate size_t is a 2 [...] new c71644776f4 libstdc++: Fix test to use correct function new ce90d203cea testsuite: Add missing <exception> header to testcase new 52bf6abbec8 Merge master r11-2984.
The 4 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 | 51 +++++++++ gcc/DATESTAMP | 2 +- gcc/analyzer/ChangeLog | 6 ++ gcc/builtins.c | 9 +- gcc/c/ChangeLog | 6 ++ gcc/config.gcc | 1 + gcc/config/bpf/bpf.c | 17 --- gcc/config/bpf/bpf.h | 46 ++------ gcc/config/pa/pa.c | 21 ++++ gcc/config/rs6000/rs6000-call.c | 10 +- gcc/cp/ChangeLog | 11 ++ gcc/cp/init.c | 6 ++ gcc/doc/invoke.texi | 2 +- gcc/fortran/ChangeLog | 8 ++ gcc/fortran/check.c | 8 +- gcc/testsuite/ChangeLog | 37 +++++++ gcc/testsuite/g++.dg/cpp0x/initlist-new4.C | 6 ++ gcc/testsuite/g++.old-deja/g++.abi/cxa_vec.C | 1 + gcc/testsuite/gcc.dg/Wstringop-overflow-42.c | 58 ++++++++++ gcc/testsuite/gcc.dg/Wstringop-overflow.c | 12 +-- gcc/testsuite/gcc.dg/Wstringop-overread-4.c | 58 ++++++++++ gcc/testsuite/gcc.dg/pr55940.c | 1 + gcc/testsuite/gcc.target/powerpc/pr96808.c | 59 ++++++++++ gcc/testsuite/gfortran.dg/pr96859.f90 | 25 +++++ libstdc++-v3/ChangeLog | 33 ++++++ libstdc++-v3/include/bits/c++config | 35 ++++-- libstdc++-v3/include/bits/cpp_type_traits.h | 60 +++++++++++ libstdc++-v3/include/bits/deque.tcc | 8 +- libstdc++-v3/include/bits/range_access.h | 10 +- libstdc++-v3/include/bits/ranges_algo.h | 5 +- libstdc++-v3/include/bits/stl_algobase.h | 7 +- libstdc++-v3/include/bits/stl_iterator.h | 3 +- libstdc++-v3/include/parallel/base.h | 5 +- libstdc++-v3/include/std/array | 22 ++-- libstdc++-v3/include/std/ranges | 4 +- libstdc++-v3/libsupc++/new | 4 +- libstdc++-v3/libsupc++/new_opvnt.cc | 3 +- .../testsuite/18_support/destroying_delete.cc | 1 + .../testsuite/20_util/variant/index_type.cc | 2 +- .../array/comparison_operators/96851.cc | 119 +++++++++++++++++++++ .../23_containers/array/tuple_interface/get_neg.cc | 6 +- .../testsuite/experimental/numeric/92978.cc | 2 +- 42 files changed, 660 insertions(+), 130 deletions(-) create mode 100644 gcc/testsuite/g++.dg/cpp0x/initlist-new4.C create mode 100644 gcc/testsuite/gcc.dg/Wstringop-overflow-42.c create mode 100644 gcc/testsuite/gcc.dg/Wstringop-overread-4.c create mode 100644 gcc/testsuite/gcc.target/powerpc/pr96808.c create mode 100644 gcc/testsuite/gfortran.dg/pr96859.f90 create mode 100644 libstdc++-v3/testsuite/23_containers/array/comparison_operators [...]