This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_gcc_check/release-aarch64 in repository toolchain/ci/gcc.
from c2476f7b22e Daily bump. adds 87fdcd896ef Daily bump. adds 864dcf71c87 Daily bump. adds 7b88f9b8881 pointer-query: Fix ICE with non-pointer param [PR105635] adds 120d99a3ec3 asan: Fix up instrumentation of assignments which are both [...] adds 2f3ccb79ca8 fold-const: Fix up -fsanitize=null in C++ [PR105729] adds 93e60642891 libgomp: Don't define GOMP_HAVE_EFFICIENT_ALIGNED_ALLOC for [...] adds 8f32de15e46 libcpp: Ignore CPP_PADDING tokens in _cpp_parse_expr [PR105732] adds 081c4725893 ipa: Check cst type when propagating controled uses info adds a4ae11d935c Daily bump. adds f106ef53024 d: Fix D lexer sometimes fails to compile code read from stdin adds a578b17b596 c++: constexpr ref to array of array [PR102307] adds d9057695235 c++: deduction from auto fn [PR105623] adds d81be519fd6 c++: CTAD with alias and nested template [PR105655] adds 102a1472ab3 c++: lambda in concept [PR105652] adds 91fbce33d5d Daily bump.
No new revisions were added by this update.
Summary of changes: gcc/ChangeLog | 37 +++++++++++++ gcc/DATESTAMP | 2 +- gcc/asan.cc | 15 +++++- gcc/cp/ChangeLog | 24 +++++++++ gcc/cp/decl.cc | 17 ++++-- gcc/cp/decl2.cc | 11 ++-- gcc/cp/pt.cc | 27 +++++++--- gcc/d/ChangeLog | 9 ++++ gcc/d/d-lang.cc | 4 ++ gcc/fold-const.cc | 10 ++++ gcc/ipa-prop.cc | 10 ++-- gcc/pointer-query.cc | 2 +- gcc/testsuite/ChangeLog | 60 ++++++++++++++++++++++ gcc/testsuite/c-c++-common/cpp/va-opt-10.c | 18 +++++++ gcc/testsuite/g++.dg/cpp1y/auto-fn62.C | 14 +++++ gcc/testsuite/g++.dg/cpp1z/constexpr-array2.C | 12 +++++ .../g++.dg/cpp2a/class-deduction-alias13.C | 24 +++++++++ gcc/testsuite/g++.dg/cpp2a/concepts-lambda20.C | 17 ++++++ gcc/testsuite/g++.dg/ubsan/pr105729.C | 29 +++++++++++ gcc/testsuite/gcc.dg/asan/pr105714.c | 33 ++++++++++++ gcc/testsuite/gcc.dg/ipa/pr105639.c | 16 ++++++ gcc/testsuite/gcc.dg/pr105635.c | 11 ++++ libcpp/ChangeLog | 9 ++++ libcpp/expr.cc | 4 ++ libgomp/ChangeLog | 13 +++++ libgomp/alloc.c | 8 +-- libgomp/libgomp.h | 1 - 27 files changed, 410 insertions(+), 27 deletions(-) create mode 100644 gcc/testsuite/c-c++-common/cpp/va-opt-10.c create mode 100644 gcc/testsuite/g++.dg/cpp1y/auto-fn62.C create mode 100644 gcc/testsuite/g++.dg/cpp1z/constexpr-array2.C create mode 100644 gcc/testsuite/g++.dg/cpp2a/class-deduction-alias13.C create mode 100644 gcc/testsuite/g++.dg/cpp2a/concepts-lambda20.C create mode 100644 gcc/testsuite/g++.dg/ubsan/pr105729.C create mode 100644 gcc/testsuite/gcc.dg/asan/pr105714.c create mode 100644 gcc/testsuite/gcc.dg/ipa/pr105639.c create mode 100644 gcc/testsuite/gcc.dg/pr105635.c