This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_gnu/gnu-release-arm-bootstrap_O1 in repository toolchain/ci/gcc.
from 568968edb0c Daily bump. adds a708cb25d92 [AArch64] Fix shrinkwrapping interactions with atomics (PR92692) adds 2ceb5aba64e c++: Bogus error using namespace alias [PR91826] adds 83f65674e78 Daily bump. adds 7db777843cc c++: Fix ICE with lambda in member operator (PR93279) adds dcb23017b1a c++: Fix array of char typedef in template (PR90966). adds 9d4d55a52d4 c++: Function declared with typedef with eh-specification. adds 1c7061c7c35 c++: Allow template rvalue-ref conv to bind to lvalue ref. adds 50a42922d35 Daily bump. adds a1f8dca201e [AArch64] PR92424: Fix -fpatchable-function-entry=N,M with BTI adds c6613dd33ce Daily bump. adds 9d9679132e0 c++: Drop alignas restriction for stack variables. adds afb84a42ad8 RISC-V: Disallow regrenme if the TO register never used bef [...] adds 6957d3e4eef Fix ICE in pa_elf_select_rtx_section. adds 6da4411d950 Daily bump. adds bf4ee21e21b Daily bump.
No new revisions were added by this update.
Summary of changes: gcc/ChangeLog | 44 +++++++++++++++ gcc/DATESTAMP | 2 +- gcc/c-family/ChangeLog | 5 ++ gcc/c-family/c-attribs.c | 62 +--------------------- gcc/config/aarch64/aarch64.c | 37 +++++++++++++ gcc/config/aarch64/aarch64.h | 1 + gcc/config/aarch64/atomics.md | 18 +++---- gcc/config/pa/pa.c | 2 +- gcc/config/riscv/riscv-protos.h | 2 + gcc/config/riscv/riscv.c | 13 +++++ gcc/config/riscv/riscv.h | 2 + gcc/cp/ChangeLog | 21 ++++++++ gcc/cp/call.c | 2 + gcc/cp/decl.c | 1 + gcc/cp/name-lookup.c | 38 ++++++++----- gcc/cp/pt.c | 13 ++++- gcc/testsuite/ChangeLog | 17 ++++++ gcc/testsuite/g++.dg/cpp0x/alignas17.C | 14 +++++ gcc/testsuite/g++.dg/cpp0x/initlist-array10.C | 14 +++++ .../g++.dg/cpp0x/lambda/lambda-template16.C | 15 ++++++ gcc/testsuite/g++.dg/cpp0x/rv-conv3.C | 15 ++++++ gcc/testsuite/g++.dg/cpp1z/noexcept-type22.C | 6 +++ gcc/testsuite/g++.dg/lookup/pr91826.C | 16 ++++++ gcc/testsuite/gcc.target/aarch64/pr92424-2.c | 12 +++++ gcc/testsuite/gcc.target/aarch64/pr92424-3.c | 12 +++++ gcc/testsuite/gcc.target/riscv/pr93304.c | 19 +++++++ 26 files changed, 318 insertions(+), 85 deletions(-) create mode 100644 gcc/testsuite/g++.dg/cpp0x/alignas17.C create mode 100644 gcc/testsuite/g++.dg/cpp0x/initlist-array10.C create mode 100644 gcc/testsuite/g++.dg/cpp0x/lambda/lambda-template16.C create mode 100644 gcc/testsuite/g++.dg/cpp0x/rv-conv3.C create mode 100644 gcc/testsuite/g++.dg/cpp1z/noexcept-type22.C create mode 100644 gcc/testsuite/g++.dg/lookup/pr91826.C create mode 100644 gcc/testsuite/gcc.target/aarch64/pr92424-2.c create mode 100644 gcc/testsuite/gcc.target/aarch64/pr92424-3.c create mode 100644 gcc/testsuite/gcc.target/riscv/pr93304.c