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-next-allyesconfig in repository toolchain/ci/gcc.
from 59afd6ad836 libcpp: Diagnose __has_include outside of preprocessor dire [...] adds 9962493ca2f libstdc++: Fix regressions in unique_ptr::swap (PR 93562) adds 9bc5bea1f3f libstdc++: Fix name of macro in #undef directive adds 5124c34fcc6 tree-optimization/93538 - add missing comparison folding case adds 1dae549dccf analyzer: fix build error with clang (PR 93543) adds c422cec54a5 analyzer: fix testsuite assumption that sizeof(int) > 2 adds a1c9c9ff06a c++: Fix ({ ... }) array mem-initializer. adds 0712ea6313b c++: Fix constexpr vs. omitted aggregate init. adds 85409531ff0 c++: Fix error-recovery with concepts. adds 81d73774ed6 Daily bump. adds 3ef39186b61 Handle type deduction of auto and decltype(auto) with refer [...] adds 7db12d155dd libstdc++: Apply the move_iterator changes described in P1207R4 adds f4239581925 Document ASLR for Precompiled Headers. adds 27736735f6f Do not load body for alias symbols. adds b843bcb8951 openmp: Avoid ICEs with declare simd; declare simd inbranch [...] adds bfce27245b0 Fix up comment typo. adds a2155f7dd3d Increase index number for creating temp vars' name. adds 5f44a4341cf libiberty/hashtab: More const parameters adds 1105cf8163f middle-end/90648 fend off builtin calls with not enough arg [...]
No new revisions were added by this update.
Summary of changes: gcc/ChangeLog | 27 ++++++ gcc/ChangeLog-2009 | 2 +- gcc/DATESTAMP | 2 +- gcc/analyzer/ChangeLog | 7 ++ gcc/analyzer/engine.cc | 4 +- gcc/cp/ChangeLog | 30 +++++++ gcc/cp/constexpr.c | 23 ++++- gcc/cp/constraint.cc | 3 +- gcc/cp/coroutines.cc | 16 ++-- gcc/cp/init.c | 48 ++++------- gcc/doc/invoke.texi | 4 + gcc/genmatch.c | 22 +++-- gcc/lto/ChangeLog | 7 ++ gcc/lto/lto-dump.c | 22 ++--- gcc/match.pd | 33 +++++--- gcc/omp-simd-clone.c | 12 ++- gcc/testsuite/ChangeLog | 27 ++++++ gcc/testsuite/c-c++-common/gomp/pr93555-1.c | 18 ++++ gcc/testsuite/c-c++-common/gomp/pr93555-2.c | 16 ++++ .../torture/co-await-14-return-ref-to-auto.C | 45 ++++++++++ gcc/testsuite/g++.dg/cpp0x/constexpr-array23.C | 24 ++++++ gcc/testsuite/g++.dg/cpp0x/constexpr-array24.C | 10 +++ gcc/testsuite/g++.dg/cpp0x/desig2.C | 4 +- gcc/testsuite/g++.dg/cpp0x/desig3.C | 4 +- gcc/testsuite/g++.dg/cpp0x/desig4.C | 4 +- gcc/testsuite/g++.dg/cpp2a/concepts-err1.C | 33 ++++++++ gcc/testsuite/g++.dg/ext/array1.C | 2 +- gcc/testsuite/g++.dg/ext/flexary29.C | 2 +- gcc/testsuite/g++.dg/init/array28.C | 2 +- gcc/testsuite/gcc.dg/analyzer/data-model-1.c | 4 +- gcc/testsuite/gcc.dg/pr90648.c | 8 ++ gcc/testsuite/gcc.dg/tree-ssa/forwprop-38.c | 13 +++ gcc/testsuite/gfortran.dg/gomp/pr93555.f90 | 11 +++ gcc/tree-ssa-alias.c | 2 +- include/ChangeLog | 5 ++ include/hashtab.h | 4 +- libiberty/ChangeLog | 5 ++ libiberty/hashtab.c | 4 +- libstdc++-v3/ChangeLog | 17 ++++ libstdc++-v3/include/bits/stl_iterator.h | 15 +++- libstdc++-v3/include/bits/unique_ptr.h | 16 +++- libstdc++-v3/include/std/functional | 2 +- .../20_util/unique_ptr/modifiers/93562.cc | 98 ++++++++++++++++++++++ 43 files changed, 557 insertions(+), 100 deletions(-) create mode 100644 gcc/testsuite/c-c++-common/gomp/pr93555-1.c create mode 100644 gcc/testsuite/c-c++-common/gomp/pr93555-2.c create mode 100644 gcc/testsuite/g++.dg/coroutines/torture/co-await-14-return-ref- [...] create mode 100644 gcc/testsuite/g++.dg/cpp0x/constexpr-array23.C create mode 100644 gcc/testsuite/g++.dg/cpp0x/constexpr-array24.C create mode 100644 gcc/testsuite/g++.dg/cpp2a/concepts-err1.C create mode 100644 gcc/testsuite/gcc.dg/pr90648.c create mode 100644 gcc/testsuite/gcc.dg/tree-ssa/forwprop-38.c create mode 100644 gcc/testsuite/gfortran.dg/gomp/pr93555.f90 create mode 100644 libstdc++-v3/testsuite/20_util/unique_ptr/modifiers/93562.cc