This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_gcc_bootstrap/master-aarch64-bootstrap in repository toolchain/ci/gcc.
from f3d64372d77 amdgcn: fix up offload debug linking with LLVM 13 adds 4764049dd62 openmp: Fix up handling of OMP_PLACES=threads(1) adds c057ed9c52c openmp: Fix up strtoul and strtoull uses in libgomp adds 4a0fed0c0c7 openmp: Handle OpenMP 5.1 simplified OMP_PLACES syntax adds 168761adf97 Consistently use "rG" constraint for copy instruction in mo [...] adds a10794eafb1 openmp: Improve testsuite/libgomp.c/affinity-1.c testcase adds 93ac832f184 Ranger : Do not process abnormal ssa-names. adds a01704fc45a Darwin, D: Fix D bootstrap, include tm-dwarf2.h. adds 1ba7adabf29 libstdc++: Remove unused functions in std::variant implementation adds e27771e5dcd libstdc++: Remove try/catch overhead in std::variant::emplace adds ad820b0bb5f libstdc++: Add missing constexpr to std::variant (P2231R1) adds 2c564e813c0 libstdc++: Make non-propagating-cache fully constexpr [PR101263] adds 730f52e05a1 Allow early sets of SSE hard registers from standard_sse_co [...] adds 353cb291a48 Darwin: Revise handling of some driver opts. adds 4aef14b0955 Darwin: Update specs handling '-r'. new 1e819bd95eb Fortran: validate shape of arrays in constructors against d [...]
The 1 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/config.gcc | 1 + gcc/config/darwin-driver.c | 30 +- gcc/config/darwin.h | 331 +++++++++++++-------- gcc/config/darwin.opt | 155 ++-------- gcc/config/i386/darwin.h | 9 +- gcc/config/i386/i386.c | 4 +- gcc/config/pa/pa.md | 40 +-- gcc/fortran/decl.c | 9 +- gcc/fortran/resolve.c | 28 ++ gcc/gimple-range-fold.h | 1 + gcc/gimple-range.cc | 4 + gcc/gimple-ssa-evrp.c | 39 ++- .../gfortran.dg/derived_constructor_char_1.f90 | 2 +- gcc/testsuite/gfortran.dg/pr102685.f90 | 30 ++ gcc/testsuite/gfortran.dg/pr70931.f90 | 3 +- gcc/testsuite/gfortran.dg/transfer_simplify_2.f90 | 2 +- gcc/value-query.cc | 3 +- libgomp/config/linux/affinity.c | 44 ++- libgomp/config/rtems/proc.c | 11 +- libgomp/env.c | 81 +++-- libgomp/libgomp.texi | 6 +- libgomp/testsuite/libgomp.c/affinity-1.c | 7 +- libgomp/testsuite/libgomp.c/places-10.c | 10 + libgomp/testsuite/libgomp.c/places-6.c | 10 + libgomp/testsuite/libgomp.c/places-7.c | 10 + libgomp/testsuite/libgomp.c/places-8.c | 10 + libgomp/testsuite/libgomp.c/places-9.c | 10 + libstdc++-v3/include/std/ranges | 42 ++- libstdc++-v3/include/std/variant | 211 ++++++++----- libstdc++-v3/include/std/version | 7 +- libstdc++-v3/testsuite/20_util/optional/version.cc | 4 +- libstdc++-v3/testsuite/20_util/variant/87619.cc | 2 + .../testsuite/20_util/variant/constexpr.cc | 138 +++++++++ libstdc++-v3/testsuite/20_util/variant/version.cc | 11 + libstdc++-v3/testsuite/std/ranges/adaptors/join.cc | 13 + 35 files changed, 862 insertions(+), 456 deletions(-) create mode 100644 gcc/testsuite/gfortran.dg/pr102685.f90 create mode 100644 libgomp/testsuite/libgomp.c/places-10.c create mode 100644 libgomp/testsuite/libgomp.c/places-6.c create mode 100644 libgomp/testsuite/libgomp.c/places-7.c create mode 100644 libgomp/testsuite/libgomp.c/places-8.c create mode 100644 libgomp/testsuite/libgomp.c/places-9.c create mode 100644 libstdc++-v3/testsuite/20_util/variant/constexpr.cc create mode 100644 libstdc++-v3/testsuite/20_util/variant/version.cc