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/master-aarch64 in repository toolchain/ci/gcc.
from 3b61f06b2e1 Do not ICE on ternary expressions when calculating value ranges adds 7ed58b4274c pch: Small cleanup adds 3788c4ed2c7 docs: add missing @item for the first item adds ef5d671cd80 libstdc++: Fix std::regex_replace for strings with embedded [...] adds 55823c5a0ba libstdc++: Make ranges::size and ranges::empty check for un [...] adds 494ebfa7c9a Fortran: Handle compare in OpenMP atomic adds 7bf710b5116 libstdc++: Add support for '?' in linker script globs adds f3f923e5139 Leverage sysroot for VxWorks adds b80e6d97a9e Ensure VxWorks headers expose C99 features for C++ adds 55fb12f12fe Include yvals.h for VxWorks < 7 RTPs as well adds 9eb8785b3fa inline: fix ICE with -fprofile-generate adds 0caf592d6ae aarch64: Add support for Armv8.8-a memory operations and me [...] adds bb768f8b45a aarch64: Add memmove expansion for +mops adds d3bd985e799 aarch64: Use +mops to inline memset operations adds 5954b4d415f aarch64: Add command-line support for Armv8.8-a adds 16c848090f2 Add -fipa-strict-aliasing adds 0ecb48d7530 Preserve cpu specific CRTSTUFF_T_CFLAGS on powerpc-vxworks7 adds 0515c95d5fe VxWorks config fixes for shared objects adds 4099d6501e3 Tigthen libc_internal and crtstuff for VxWorks shared objects adds 20a0e2721a9 Remove special case for arm-vxworks on the use of vxcrtstuff adds 04577ac0843 Remove ppc*-vxworks7* inadequate libgcc Makefile fragments adds fc4a93eb412 Rework VXWORKS_LINK_SPEC for shared objects support
No new revisions were added by this update.
Summary of changes: gcc/common.opt | 4 + gcc/config/aarch64/aarch64-arches.def | 1 + gcc/config/aarch64/aarch64-option-extensions.def | 3 + gcc/config/aarch64/aarch64-sve-builtins.cc | 2 +- gcc/config/aarch64/aarch64.c | 155 ++++++++-- gcc/config/aarch64/aarch64.h | 29 +- gcc/config/aarch64/aarch64.md | 84 +++++- gcc/config/aarch64/aarch64.opt | 12 + gcc/config/rs6000/vxworks.h | 15 +- gcc/config/t-vxworks | 8 + gcc/config/vx-common.h | 7 +- gcc/config/vxworks.h | 168 +++++++---- gcc/config/vxworks/_yvals.h | 6 +- gcc/doc/extend.texi | 2 +- gcc/doc/invoke.texi | 17 +- gcc/fortran/openmp.c | 81 +++--- gcc/fortran/trans-openmp.c | 211 ++++++++++---- gcc/ipa-inline.c | 25 +- gcc/ipa-modref.c | 8 +- gcc/machmode.h | 2 +- gcc/poly-int.h | 2 +- gcc/testsuite/gcc.target/aarch64/mops_1.c | 57 ++++ gcc/testsuite/gcc.target/aarch64/mops_2.c | 57 ++++ gcc/testsuite/gcc.target/aarch64/mops_3.c | 85 ++++++ gcc/testsuite/gfortran.dg/gomp/atomic-21.f90 | 93 ++++++ gcc/testsuite/gfortran.dg/gomp/atomic-25.f90 | 18 +- gcc/testsuite/gfortran.dg/gomp/atomic-26.f90 | 26 +- gcc/wide-int.h | 4 +- libgcc/config.host | 11 +- libgcc/config/t-vxcrtstuffS | 9 + libgcc/config/t-vxworks | 11 +- libgcc/config/t-vxworks7 | 22 -- libgcc/config/vxcrtstuff.c | 77 ++++- libgomp/libgomp.texi | 3 +- libgomp/testsuite/libgomp.fortran/atomic-19.f90 | 313 +++++++++++++++++++++ libstdc++-v3/include/bits/ranges_base.h | 4 + libstdc++-v3/include/bits/regex.h | 20 +- libstdc++-v3/include/bits/regex.tcc | 9 +- libstdc++-v3/scripts/make_exports.pl | 6 +- .../algorithms/regex_replace/char/103664.cc | 11 + libstdc++-v3/testsuite/std/ranges/access/empty.cc | 10 + libstdc++-v3/testsuite/std/ranges/access/size.cc | 10 + 42 files changed, 1429 insertions(+), 269 deletions(-) create mode 100644 gcc/testsuite/gcc.target/aarch64/mops_1.c create mode 100644 gcc/testsuite/gcc.target/aarch64/mops_2.c create mode 100644 gcc/testsuite/gcc.target/aarch64/mops_3.c create mode 100644 gcc/testsuite/gfortran.dg/gomp/atomic-21.f90 create mode 100644 libgcc/config/t-vxcrtstuffS delete mode 100644 libgcc/config/t-vxworks7 create mode 100644 libgomp/testsuite/libgomp.fortran/atomic-19.f90 create mode 100644 libstdc++-v3/testsuite/28_regex/algorithms/regex_replace/char/1 [...]