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_build/release-aarch64 in repository toolchain/ci/gcc.
from c2476f7b22e Daily bump. new 87fdcd896ef Daily bump. new 864dcf71c87 Daily bump. new 7b88f9b8881 pointer-query: Fix ICE with non-pointer param [PR105635] new 120d99a3ec3 asan: Fix up instrumentation of assignments which are both [...] new 2f3ccb79ca8 fold-const: Fix up -fsanitize=null in C++ [PR105729] new 93e60642891 libgomp: Don't define GOMP_HAVE_EFFICIENT_ALIGNED_ALLOC for [...] new 8f32de15e46 libcpp: Ignore CPP_PADDING tokens in _cpp_parse_expr [PR105732] new 081c4725893 ipa: Check cst type when propagating controled uses info new a4ae11d935c Daily bump. new f106ef53024 d: Fix D lexer sometimes fails to compile code read from stdin new a578b17b596 c++: constexpr ref to array of array [PR102307] new d9057695235 c++: deduction from auto fn [PR105623] new d81be519fd6 c++: CTAD with alias and nested template [PR105655] new 102a1472ab3 c++: lambda in concept [PR105652] new 91fbce33d5d Daily bump.
The 15 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 | 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