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_gcc/master-aarch64 in repository toolchain/ci/gcc.
from f5c50748f36 libstdc++: Include <stddef.h> for size_t and ptrdiff_t [PR104123] adds fe3e9780277 libstdc++: Remove -gdwarf-4 from flags for debug library adds fe1ad141651 Daily bump. adds 64655e7bdbe testsuite: sldoi requires VSX. adds 30f2c22def7 c++: template-id with current inst qualifier [PR102300] adds ad4188f8385 tree-optimization/104114 - avoid diagnosing V1mode lowering adds 8bc700f4c3f Enhance vec_pack_trunc for integral mode mask. adds 7b78dee64de testsuite: Add -Wno-psabi to pr47639.C testcase adds 68f03ac49cb dwarf2out: Fix -gsplit-dwarf on riscv [PR103874] adds e744aa373d2 Fix -Werror=format-diag with RTL checking adds 6d51a27fb17 Fix Werror=format-diag with --disable-nls. adds 0042ca7b770 arm: Disambiguate multiple crypto patterns with the same name. adds c471ee0f05d arm: Consistently use crypto_mode attribute in crypto patterns adds facbc2368c8 arm: Add option for mitigating against Cortex-A CPU erratum [...] adds bc13384e195 arm: add basic mitigation for Cortex-A AES errata adds 2078550a005 arm: suppress aes erratum when forwarding from aes adds 997070498b0 arm: elide some cases where the AES erratum workaround is n [...] adds 9b42782366b arm: Add test for AES erratum mitigation adds 5929f253fcd libstdc++: Only add valid -L paths to testsuite linker options adds 109f8af3d3c libstdc++: Use Clang attribute instead of __constinit adds ce9e0cc5da4 MAINTAINERS: adjust requested email address adds d63d9c3dd16 target/100784 - avoid ICE with folding __builtin_ia32_shufpd adds 2cda2bfa3fd c++: consistently diagnose bare CTAD placeholder in fn return type adds 09845ad7569 c++: CTAD inside alias template [PR91911, PR103672] adds 6b73c07ec2e Only add equivalencies that are still valid. adds 62eb400b51f aarch64: allow ld1/stq in test output [PR102517] adds 5c12507f5d0 middle-end/100786 - constant folding from incompatible alias
No new revisions were added by this update.
Summary of changes: MAINTAINERS | 2 +- contrib/ChangeLog | 10 + gcc/ChangeLog | 325 +++++++++++++++++++++ gcc/DATESTAMP | 2 +- gcc/ada/ChangeLog | 16 + gcc/c-family/ChangeLog | 18 ++ gcc/config/arm/arm-cpus.in | 9 +- gcc/config/arm/arm.cc | 9 + gcc/config/arm/arm.opt | 10 + gcc/config/arm/crypto.md | 227 ++++++++++---- gcc/config/arm/unspecs.md | 1 + gcc/config/i386/i386.cc | 2 +- gcc/cp/ChangeLog | 18 ++ gcc/cp/decl.cc | 6 +- gcc/cp/error.cc | 18 +- gcc/cp/parser.cc | 8 +- gcc/cp/pt.cc | 60 ++-- gcc/doc/invoke.texi | 11 + gcc/dwarf2out.cc | 5 +- gcc/emit-rtl.cc | 2 +- gcc/gimple-fold.cc | 4 +- gcc/rtl.cc | 13 + gcc/testsuite/ChangeLog | 91 ++++++ gcc/testsuite/g++.dg/cpp1z/class-deduction101.C | 17 ++ gcc/testsuite/g++.dg/cpp1z/class-deduction101a.C | 22 ++ gcc/testsuite/g++.dg/cpp1z/class-deduction101b.C | 22 ++ gcc/testsuite/g++.dg/cpp1z/class-deduction102.C | 25 ++ gcc/testsuite/g++.dg/cpp1z/class-deduction102a.C | 27 ++ gcc/testsuite/g++.dg/cpp1z/class-deduction102b.C | 30 ++ gcc/testsuite/g++.dg/cpp1z/class-deduction103.C | 22 ++ gcc/testsuite/g++.dg/opt/pr47639.C | 2 +- gcc/testsuite/g++.dg/other/pr88187.C | 2 +- gcc/testsuite/g++.dg/parse/no-typename1.C | 2 +- gcc/testsuite/g++.dg/template/nested7.C | 12 + gcc/testsuite/gcc.dg/debug/dwarf2/pr103874.c | 12 + gcc/testsuite/gcc.dg/torture/pr100786.c | 9 + gcc/testsuite/gcc.target/aarch64/cpymem-q-reg_1.c | 4 +- .../gcc.target/arm/crypto-vaese-erratum1.c | 28 ++ .../gcc.target/i386/mask-pack-prefer128.c | 8 + .../gcc.target/i386/mask-pack-prefer256.c | 8 + gcc/testsuite/gcc.target/i386/pr103771.c | 18 ++ gcc/testsuite/gcc.target/powerpc/sldoi_to_mov.c | 3 +- gcc/tree-vect-generic.cc | 5 +- gcc/tree-vect-stmts.cc | 11 +- gcc/value-relation.cc | 41 ++- gcc/value-relation.h | 2 + libgomp/ChangeLog | 33 +++ libstdc++-v3/ChangeLog | 49 ++++ libstdc++-v3/configure | 4 +- libstdc++-v3/configure.ac | 2 +- libstdc++-v3/scripts/testsuite_flags.in | 12 +- libstdc++-v3/src/c++11/cxx11-ios_failure.cc | 4 + libstdc++-v3/src/c++11/future.cc | 4 + libstdc++-v3/src/c++11/system_error.cc | 4 + libstdc++-v3/src/c++17/memory_resource.cc | 4 + 55 files changed, 1182 insertions(+), 133 deletions(-) create mode 100644 gcc/testsuite/g++.dg/cpp1z/class-deduction101.C create mode 100644 gcc/testsuite/g++.dg/cpp1z/class-deduction101a.C create mode 100644 gcc/testsuite/g++.dg/cpp1z/class-deduction101b.C create mode 100644 gcc/testsuite/g++.dg/cpp1z/class-deduction102.C create mode 100644 gcc/testsuite/g++.dg/cpp1z/class-deduction102a.C create mode 100644 gcc/testsuite/g++.dg/cpp1z/class-deduction102b.C create mode 100644 gcc/testsuite/g++.dg/cpp1z/class-deduction103.C create mode 100644 gcc/testsuite/g++.dg/template/nested7.C create mode 100644 gcc/testsuite/gcc.dg/debug/dwarf2/pr103874.c create mode 100644 gcc/testsuite/gcc.dg/torture/pr100786.c create mode 100644 gcc/testsuite/gcc.target/arm/crypto-vaese-erratum1.c create mode 100644 gcc/testsuite/gcc.target/i386/mask-pack-prefer128.c create mode 100644 gcc/testsuite/gcc.target/i386/mask-pack-prefer256.c create mode 100644 gcc/testsuite/gcc.target/i386/pr103771.c