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_build/master-arm in repository toolchain/ci/gcc.
from 1f722e35ab3 Add optmization testcase for incorrect optimization in Ada adds 8d6fffc4bcd rs6000: Fix up -D_FORTIFY_SOURCE* with -mabi=ieeelongdouble [...] adds 8cb748a31cd rs6000: Clean up ISA 3.1 documentation [PR100808] adds b28b92bc008 rs6000: More factoring of overload processing adds ebf61754647 libstdc++: Fix filesystem::remove_all races [PR104161] adds da72e0fd20f libstdc++: Remove un-implementable noexcept from Filesystem [...] adds 0d1aabb60ec libstdc++: Allow Clang to use <stdatomic.h> before C++23 adds 6e3419529d4 libstdc++: Fix std::filesystem build failure for Windows adds 3c1cbde16e5 Daily bump. adds b523cae81c6 compiler: accept "any" as an alias for "interface{}" adds 0ef416e7edc c++: add comment adds 119cea98f66 c++: assignment, aggregate, array [PR104300] adds 06e32a5ebf2 RISC-V: Always pass -misa-spec to assembler [PR104219] adds affdeda16ef RISC-V: Fix detection of zifencei support for binutils adds b3763384a1f match.pd: Fix x * 0.0 -> 0.0 folding [PR104389]
No new revisions were added by this update.
Summary of changes: fixincludes/ChangeLog | 4 + gcc/ChangeLog | 107 ++++++++ gcc/DATESTAMP | 2 +- gcc/config.gcc | 4 +- gcc/config/riscv/riscv.h | 2 + gcc/config/rs6000/rs6000-c.cc | 304 +++++++++------------ gcc/config/rs6000/rs6000.cc | 5 + gcc/configure | 2 +- gcc/configure.ac | 2 +- gcc/cp/cp-gimplify.cc | 37 ++- gcc/cp/cp-tree.h | 27 ++ gcc/cp/init.cc | 12 +- gcc/cp/pt.cc | 4 + gcc/cp/tree.cc | 4 +- gcc/cp/typeck2.cc | 9 +- gcc/doc/extend.texi | 71 +++-- gcc/go/gofrontend/MERGE | 2 +- gcc/go/gofrontend/gogo.cc | 9 + gcc/lto/ChangeLog | 6 + gcc/match.pd | 4 +- gcc/testsuite/ChangeLog | 48 ++++ gcc/testsuite/g++.dg/cpp0x/initlist-array14.C | 12 + gcc/testsuite/gcc.dg/pr104380.c | 32 +++ gcc/testsuite/gcc.dg/pr104389.c | 26 ++ gcc/testsuite/go.test/test/fixedbugs/issue14652.go | 5 +- libgomp/ChangeLog | 12 + libstdc++-v3/ChangeLog | 78 ++++++ libstdc++-v3/acinclude.m4 | 27 +- libstdc++-v3/config.h.in | 6 + libstdc++-v3/configure | 116 +++++++- libstdc++-v3/include/bits/fs_dir.h | 8 + libstdc++-v3/include/bits/fs_fwd.h | 4 + libstdc++-v3/include/c_compatibility/stdatomic.h | 2 + libstdc++-v3/include/experimental/bits/fs_ops.h | 8 +- libstdc++-v3/src/c++17/fs_dir.cc | 251 ++++++++++++++--- libstdc++-v3/src/c++17/fs_ops.cc | 139 ++++------ libstdc++-v3/src/filesystem/dir-common.h | 145 ++++++---- libstdc++-v3/src/filesystem/dir.cc | 77 ++++-- libstdc++-v3/src/filesystem/ops.cc | 37 +-- 39 files changed, 1179 insertions(+), 471 deletions(-) create mode 100644 gcc/testsuite/g++.dg/cpp0x/initlist-array14.C create mode 100644 gcc/testsuite/gcc.dg/pr104380.c create mode 100644 gcc/testsuite/gcc.dg/pr104389.c