This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_kernel/gnu-master-aarch64-mainline-defconfig in repository toolchain/ci/gcc.
from 4707548ee84 Add myself to MAINTAINERS adds 86e2dc22c91 libstdc++: Fix failing test in debug mode adds a51a546c170 libstdc++: Fix FS-dependent filesystem tests adds a1535015786 libstdc++: Memoize {drop,drop_while,filter,reverse}_view::begin adds 349297b6e69 Fix misleading aarch64 mcpu/march warning string adds f3ce088645e One more patch for PR93564: Prefer smaller hard regno when [...] adds 18396541e47 c++: Further tweak for P1937R2 - const{expr,eval} inconsistencies adds 08bf7bde9f2 Improve detection of ld_date. adds 77e596cf3c1 libstdc++: Also disable caching of reverse_view::begin() fo [...] adds ab2f2e19111 Fix target/93937 adds 7485ace81de Commit for PR92785 adds 4735f92d48c libstdc++: test for failing assertion should use 'run' not [...] adds 586b016cd48 c++: Fix constrained conversion op. adds 799270b4305 libstdc++: Update the <numeric> synopsis test to latest standard adds 3f469f585e0 runtime: handle linux/arm64 signal register adds e82192021dd coroutines: Update func-params-08.C to suspend three times. adds ce33801fe4c libstdc++: Fix bogus use of memcmp in ranges::lexicographic [...] adds 96ad5fb8bc9 Daily bump. adds 117baab8771 c++: implement C++20 Disambiguating Nested-Requirements (P2092R0)
No new revisions were added by this update.
Summary of changes: gcc/ChangeLog | 25 +++ gcc/DATESTAMP | 2 +- gcc/config/aarch64/aarch64.c | 4 +- gcc/config/rs6000/vsx.md | 22 --- gcc/configure | 2 +- gcc/configure.ac | 2 +- gcc/cp/ChangeLog | 15 ++ gcc/cp/call.c | 4 + gcc/cp/parser.c | 4 +- gcc/cp/typeck.c | 1 + gcc/fortran/ChangeLog | 6 + gcc/fortran/trans-expr.c | 11 ++ gcc/go/gofrontend/MERGE | 2 +- gcc/ira-color.c | 4 +- gcc/testsuite/ChangeLog | 17 ++- .../g++.dg/coroutines/torture/func-params-08.C | 2 +- gcc/testsuite/g++.dg/cpp2a/concepts-conv1.C | 15 ++ gcc/testsuite/g++.dg/cpp2a/concepts-p2092.C | 8 + gcc/testsuite/g++.dg/cpp2a/consteval16.C | 7 + gcc/testsuite/g++.dg/cpp2a/consteval3.C | 4 +- .../gfortran.dg/unlimited_polymorphic_31.f03 | 55 +++++++ libgo/runtime/go-signal.c | 63 +++----- libstdc++-v3/ChangeLog | 58 +++++++ libstdc++-v3/include/bits/ranges_algo.h | 8 +- libstdc++-v3/include/std/ranges | 137 +++++++++++++++-- .../21_strings/basic_string/cons/char/1.cc | 2 + .../range_operations/advance_debug_neg.cc | 10 +- .../25_algorithms/lexicographical_compare/93972.cc | 169 +++++++++++++++++++++ .../26_numerics/headers/numeric/synopsis.cc | 111 ++++++++++++++ .../27_io/filesystem/operations/last_write_time.cc | 77 +++++++--- .../filesystem/operations/last_write_time.cc | 58 ++++--- libstdc++-v3/testsuite/std/ranges/adaptors/drop.cc | 57 +++++++ .../testsuite/std/ranges/adaptors/drop_while.cc | 38 ++++- .../testsuite/std/ranges/adaptors/filter.cc | 36 +++++ .../testsuite/std/ranges/adaptors/reverse.cc | 56 +++++++ 35 files changed, 962 insertions(+), 130 deletions(-) create mode 100644 gcc/testsuite/g++.dg/cpp2a/concepts-conv1.C create mode 100644 gcc/testsuite/g++.dg/cpp2a/concepts-p2092.C create mode 100644 gcc/testsuite/g++.dg/cpp2a/consteval16.C create mode 100644 gcc/testsuite/gfortran.dg/unlimited_polymorphic_31.f03 create mode 100644 libstdc++-v3/testsuite/25_algorithms/lexicographical_compare/93972.cc