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/release-aarch64-bootstrap in repository toolchain/ci/gcc.
from 6d51766a558 libstdc++: Fix ip::tcp::resolver test failure on Solaris adds 5f88afa1a21 Daily bump. adds 28f91cc71be Darwin, D: Fix bootstrap when target does not support -Bsta [...] adds cb261f0e8fc libstdc++: Fix various bugs in ranges_algo.h [PR100187, ...] adds b707ac10d5a Add support for 32-bit hppa targets in muldi3 expander adds 8b333df9484 Darwin, X86, config: Adjust 'as' command lines [PR100340]. adds 3eac45a2a13 libstdc++: Add noexcept-specifier to basic_string_view(It, End) adds 9ef31bab15a libstdc++: Fix dangling string_view in filesystem::path [PR102592] adds c706d5c3b82 libstdc++: Rename files with the wrong extensions adds f3c81b3acf4 Daily bump. adds b4c0226e7b9 Fix TARGET_SOFT_FLOAT patterns in pa.md adds 3bf56cdf5ec libstdc++: Fix non-default constructors for hash containers [...] adds 99d21577f8a [PR102627] Use at least natural mode during splitting hard [...] adds 6a936be4adf Daily bump. adds 92a12b93edf Consistently use "rG" constraint for copy instruction in mo [...] adds 1b445083214 Daily bump. adds e08da313108 Daily bump. adds d97dbf60dda Fortran: fix order of checks for the SHAPE intrinsic adds 64b2bd684f6 Daily bump. adds e85d6ef1c45 gcc/configure.ac: fix register issue for global_load assemb [...] adds 9552afb2aec amdgcn: Add -mxnack and -msram-ecc [PR 100208] adds 92aed72a739 amdgcn: Fix attributes for LLVM-12 [PR 100208] adds 5b85107d3ce amdgcn: Mark s_mulk_i32 as clobbering SCC adds 0eb56ebc053 amdgcn: Support LLVM 13 assembler syntax adds 9120e8c402b amdgcn: Implement -msram-ecc=any adds 23ced2dc834 amdgcn: Fix assembler version incompatibility adds cc84160c5f4 amdgcn: fix up offload debug linking with LLVM 13 adds 2e6c780e1e1 openmp: Fix up handling of OMP_PLACES=threads(1) adds aa827fa170d [PR/target 100316] Allow constant address for __builtin___c [...] new e9c3a7243bf i386: Fix ICE in ix86_print_opreand_address [PR 102761]
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/ChangeLog | 40 ++ gcc/DATESTAMP | 2 +- gcc/builtins.c | 10 +- gcc/config.in | 73 +++ gcc/config/gcn/gcn-hsa.h | 59 +++ gcc/config/gcn/gcn-opts.h | 7 + gcc/config/gcn/gcn-valu.md | 18 +- gcc/config/gcn/gcn.c | 85 +++- gcc/config/gcn/gcn.md | 6 +- gcc/config/gcn/gcn.opt | 21 + gcc/config/gcn/mkoffload.c | 135 ++++- gcc/config/i386/darwin.h | 10 +- gcc/config/i386/i386.c | 5 +- gcc/config/pa/pa.md | 193 ++++++-- gcc/configure | 417 ++++++++++++++++ gcc/configure.ac | 136 +++++ gcc/d/ChangeLog | 9 + gcc/d/d-spec.cc | 6 + gcc/doc/invoke.texi | 17 + gcc/fortran/ChangeLog | 9 + gcc/fortran/check.c | 14 +- gcc/lra-constraints.c | 5 +- gcc/testsuite/ChangeLog | 13 + gcc/testsuite/gcc.c-torture/compile/pr100316.c | 18 + gcc/testsuite/gcc.target/gcn/sram-ecc-1.c | 17 + gcc/testsuite/gcc.target/gcn/sram-ecc-2.c | 17 + gcc/testsuite/gcc.target/gcn/sram-ecc-3.c | 21 + gcc/testsuite/gcc.target/gcn/sram-ecc-4.c | 21 + gcc/testsuite/gcc.target/gcn/sram-ecc-5.c | 17 + gcc/testsuite/gcc.target/gcn/sram-ecc-6.c | 17 + gcc/testsuite/gcc.target/gcn/sram-ecc-7.c | 21 + gcc/testsuite/gcc.target/gcn/sram-ecc-8.c | 21 + gcc/testsuite/gcc.target/i386/pr102627.c | 41 ++ gcc/testsuite/gcc.target/i386/pr102761.c | 11 + gcc/testsuite/gfortran.dg/shape_10.f90 | 6 + libgomp/config/linux/affinity.c | 9 +- libgomp/testsuite/libgomp.c/places-6.c | 8 + libgomp/testsuite/libgomp.c/places-7.c | 8 + libgomp/testsuite/libgomp.c/places-8.c | 8 + libstdc++-v3/ChangeLog | 551 +++++++++++++++++++++ libstdc++-v3/include/bits/fs_path.h | 11 +- libstdc++-v3/include/bits/hashtable.h | 17 +- libstdc++-v3/include/bits/ranges_algo.h | 18 +- libstdc++-v3/include/std/string_view | 1 + .../basic_string_view/cons/char/range.cc | 18 +- .../23_containers/unordered_map/cons/default.cc | 15 + .../23_containers/unordered_set/cons/default.cc | 14 + .../27_io/filesystem/path/construct/102592.cc | 28 ++ .../28_regex/match_results/{102667.C => 102667.cc} | 0 49 files changed, 2117 insertions(+), 107 deletions(-) create mode 100644 gcc/testsuite/gcc.c-torture/compile/pr100316.c create mode 100644 gcc/testsuite/gcc.target/gcn/sram-ecc-1.c create mode 100644 gcc/testsuite/gcc.target/gcn/sram-ecc-2.c create mode 100644 gcc/testsuite/gcc.target/gcn/sram-ecc-3.c create mode 100644 gcc/testsuite/gcc.target/gcn/sram-ecc-4.c create mode 100644 gcc/testsuite/gcc.target/gcn/sram-ecc-5.c create mode 100644 gcc/testsuite/gcc.target/gcn/sram-ecc-6.c create mode 100644 gcc/testsuite/gcc.target/gcn/sram-ecc-7.c create mode 100644 gcc/testsuite/gcc.target/gcn/sram-ecc-8.c create mode 100644 gcc/testsuite/gcc.target/i386/pr102627.c create mode 100644 gcc/testsuite/gcc.target/i386/pr102761.c create mode 100644 gcc/testsuite/gfortran.dg/shape_10.f90 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 libstdc++-v3/testsuite/27_io/filesystem/path/construct/102592.cc rename libstdc++-v3/testsuite/28_regex/match_results/{102667.C => 102667.cc} (100%)