This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_gnu_native_check_binutils/master-arm in repository toolchain/ci/gcc.
from 7499c13ce3b libsanitizer: update test that mixes fake and real stack adds 8afcd148103 genconditions: Add support for targets without non-trivial [...] adds 3ae5cbff1ad Fold more vector constants early adds 0aa9aa76bbf Remove dead code. adds 52b7b86f8c7 tree-optimization/103116 - SLP permutes and peeling for gaps adds eca04dc8555 tree-optimization/104658 - avoid mixing mask & non-mask vec [...] adds 9c6a4beeed5 c++: Remove cdtor_label adds ef8d5ac08b5 libstdc++: Simplify std::array accessors [PR104719] adds 22399ad6edc libstdc++: Add always_inline to the simplest std::array acc [...] adds 79a1a01cbd0 c++: parse error with >= in template argument list [PR105436] adds 3f8c389fe90 OpenMP: Fix use_device_{addr,ptr} with in-data-sharing arg adds d7de15fd93f Update cpplib es.po adds 4a206161072 libgomp/plugin/plugin-gcn.c: Use -foffload-options= in err msg adds c2e846b539b c++: use %D more adds c8df7208864 c++: optimize reshape_init adds a733dea9e7c c++: wrong parse with functors [PR64679] adds 1cd3faf5ddd c-family: Tweak -Woverflow diagnostic adds 8a98e3ff7e8 c++: ICE during aggr CTAD for member tmpl [PR105476] adds a47ab705c2c c++: alias CTAD refactoring [PR104470] adds ae90c2d0f9b libsanitizer: cherry-pick commit f52e365092aa from upstream adds 3e7db517472 Daily bump. adds b9b764bce89 MAINTAINERS: Add myself as PowerPC port co-maintainer adds 938a02a589d tree-optimization/104595 - vectorization of COND_EXPR with [...] adds e1a41143a2e tree-optimization/105484 - VEC_SET and EH adds 000f4480005 testsuite/105486 - adjust testcase to avoid misaligned accesses
No new revisions were added by this update.
Summary of changes: MAINTAINERS | 4 +- gcc/ChangeLog | 54 ++++++++ gcc/DATESTAMP | 2 +- gcc/c-family/ChangeLog | 5 + gcc/c-family/c-warn.cc | 16 ++- gcc/cp/ChangeLog | 55 ++++++++ gcc/cp/constexpr.cc | 8 +- gcc/cp/cp-tree.h | 14 -- gcc/cp/decl.cc | 28 +--- gcc/cp/error.cc | 29 +++-- gcc/cp/parser.cc | 26 +++- gcc/cp/pt.cc | 110 ++++++++-------- gcc/cp/semantics.cc | 11 -- gcc/cp/typeck.cc | 12 +- gcc/genconditions.cc | 4 +- gcc/gengtype-state.cc | 22 ++-- gcc/gimple-isel.cc | 19 ++- gcc/gimplify.cc | 33 +++-- gcc/ipa-profile.cc | 1 - gcc/omp-low.cc | 18 +-- gcc/testsuite/ChangeLog | 49 +++++++ gcc/testsuite/c-c++-common/Wconversion-1.c | 14 ++ .../g++.dg/cpp2a/class-deduction-aggr13.C | 11 ++ .../g++.dg/cpp2a/class-deduction-aggr13a.C | 18 +++ gcc/testsuite/g++.dg/parse/functor1.C | 22 ++++ gcc/testsuite/g++.dg/parse/template31.C | 4 + gcc/testsuite/gcc.dg/torture/pr105484.c | 15 +++ gcc/testsuite/gcc.dg/vect/bb-slp-pr104240.c | 3 + gcc/testsuite/gcc.dg/vect/pr103116-1.c | 50 +++++++ gcc/testsuite/gcc.dg/vect/pr103116-2.c | 59 +++++++++ gcc/testsuite/gcc.dg/vect/pr104595.c | 24 ++++ gcc/testsuite/gcc.target/i386/pr104658.c | 113 ++++++++++++++++ gcc/tree-vect-patterns.cc | 16 +-- gcc/tree-vect-slp.cc | 9 +- gcc/tree-vect-stmts.cc | 36 ++++++ include/ChangeLog | 5 + libcpp/po/ChangeLog | 4 + libcpp/po/es.po | 113 ++++++++-------- libgomp/ChangeLog | 8 ++ libgomp/plugin/plugin-gcn.c | 2 +- .../libgomp.fortran/use_device_addr-5.f90 | 143 +++++++++++++++++++++ libsanitizer/ChangeLog | 15 +++ libsanitizer/sanitizer_common/sanitizer_linux.cpp | 4 +- libstdc++-v3/ChangeLog | 22 ++++ libstdc++-v3/include/std/array | 88 ++++++------- .../23_containers/array/tuple_interface/get_neg.cc | 6 +- lto-plugin/ChangeLog | 9 ++ 47 files changed, 1031 insertions(+), 302 deletions(-) create mode 100644 gcc/testsuite/c-c++-common/Wconversion-1.c create mode 100644 gcc/testsuite/g++.dg/cpp2a/class-deduction-aggr13.C create mode 100644 gcc/testsuite/g++.dg/cpp2a/class-deduction-aggr13a.C create mode 100644 gcc/testsuite/g++.dg/parse/functor1.C create mode 100644 gcc/testsuite/g++.dg/parse/template31.C create mode 100644 gcc/testsuite/gcc.dg/torture/pr105484.c create mode 100644 gcc/testsuite/gcc.dg/vect/pr103116-1.c create mode 100644 gcc/testsuite/gcc.dg/vect/pr103116-2.c create mode 100644 gcc/testsuite/gcc.dg/vect/pr104595.c create mode 100644 gcc/testsuite/gcc.target/i386/pr104658.c create mode 100644 libgomp/testsuite/libgomp.fortran/use_device_addr-5.f90