This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_cross/gnu-master-aarch64-build_cross in repository toolchain/ci/gcc.
from e2882e76089 rs6000: MMA built-ins reject typedefs of MMA types adds a29117041d5 gcc.dg/pr30957-1.c: xfail for mmix. adds bc0ca715c29 Daily bump. adds fb9e3f79464 gcc.dg/pr44194-1.c: Skip for mmix. adds 94d4f4387de testsuite, Darwin: XFAIL runs for two timode conversion tests. adds 71197a5d13d middle-end: Correct calculation of mul_widen_cost and mul_h [...] adds 39984c4e61b Daily bump. adds 99e4891ed55 Using UNSPEC for vector compare to mask register. adds 359815ad136 This patch fixes PR96102. See the explanatory comment in th [...] adds abb276d0eca This patch fixes PR96312. Cures a used uninitialized warning. adds 5fb34b41a79 Correct ChangeLog foul ups. adds 527bf3bc8db Fix remove_predictions_associated_with_edge new 9939be5758b libstdc++: Use _wstat64 for Windows [PR 95749] new 287522613d6 Simplify X * C1 == C2 with wrapping overflow new 7b7bbbcf510 Declare gt_* functions inline in value-range.h. new 8bd92d8097d libstdc++: Check __cpp_exceptions in basic_string::reserve() new 2203a80a72c libstdc++: Implement LWG 561 for std::inserter new 90f7636bf8d libstdc++: Make C++17 ignore --disable-libstdcxx-filesystem [...] new 41fd9d26108 c++: constraints and address of template-id new 5c64df80df2 c++: Fix constexpr evaluation of SPACESHIP_EXPR [PR96497] new a5da50ed65a Fix NULL pointer dereference in doloop_contained_function_call. new ed11f7e84bc libstdc++: Fix compatibility support in unique_ptr pretty printer new 5b065f05632 libstdc++: Fix build for targets without lstat [PR 94681]
The 11 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 | 26 ++ gcc/DATESTAMP | 2 +- gcc/config/i386/i386-expand.c | 19 +- gcc/config/i386/i386-protos.h | 2 +- gcc/config/i386/i386.c | 35 -- gcc/config/i386/sse.md | 72 +--- gcc/cp/constexpr.c | 4 +- gcc/cp/pt.c | 5 +- gcc/expmed.c | 3 + gcc/expr.c | 34 +- gcc/fortran/ChangeLog | 15 - gcc/fortran/frontend-passes.c | 3 +- gcc/fortran/resolve.c | 10 + gcc/fortran/trans-expr.c | 27 +- gcc/match.pd | 19 +- gcc/predict.c | 15 +- gcc/testsuite/ChangeLog | 40 +- gcc/testsuite/g++.dg/concepts/fn8.C | 2 +- gcc/testsuite/g++.dg/cpp2a/concepts-fn1.C | 2 +- gcc/testsuite/g++.dg/cpp2a/concepts-fn5.C | 17 + gcc/testsuite/g++.dg/cpp2a/concepts-ts2.C | 2 +- gcc/testsuite/g++.dg/cpp2a/concepts-ts3.C | 2 +- gcc/testsuite/g++.dg/cpp2a/spaceship-constexpr3.C | 7 + gcc/testsuite/gcc.dg/pr30957-1.c | 4 +- gcc/testsuite/gcc.dg/pr44194-1.c | 1 + .../gcc.dg/torture/fp-int-convert-timode-3.c | 1 + .../gcc.dg/torture/fp-int-convert-timode-4.c | 1 + gcc/testsuite/gcc.dg/tree-ssa/pr95433-2.c | 15 + gcc/testsuite/gcc.target/i386/pr71321.c | 3 +- gcc/testsuite/gcc.target/i386/pr92865-1.c | 10 +- gcc/testsuite/gfortran.dg/do_check_15.f90 | 58 +++ gcc/testsuite/gfortran.dg/pr96102.f90 | 27 ++ gcc/testsuite/gfortran.dg/pr96312.f90 | 30 ++ gcc/value-range.h | 6 +- gcc/wide-int.cc | 33 ++ gcc/wide-int.h | 2 + libgomp/ChangeLog | 6 + libstdc++-v3/acinclude.m4 | 413 ++++++++++----------- libstdc++-v3/configure | 284 +++++++------- libstdc++-v3/include/bits/basic_string.tcc | 2 + libstdc++-v3/include/bits/stl_iterator.h | 9 +- libstdc++-v3/python/libstdcxx/v6/printers.py | 6 +- libstdc++-v3/src/c++17/fs_ops.cc | 2 +- libstdc++-v3/src/filesystem/ops-common.h | 6 +- libstdc++-v3/src/filesystem/ops.cc | 2 +- .../24_iterators/insert_iterator/dr561.cc | 47 +++ .../testsuite/libstdc++-prettyprinters/compat.cc | 4 +- 47 files changed, 768 insertions(+), 567 deletions(-) create mode 100644 gcc/testsuite/g++.dg/cpp2a/concepts-fn5.C create mode 100644 gcc/testsuite/g++.dg/cpp2a/spaceship-constexpr3.C create mode 100644 gcc/testsuite/gcc.dg/tree-ssa/pr95433-2.c create mode 100644 gcc/testsuite/gfortran.dg/do_check_15.f90 create mode 100644 gcc/testsuite/gfortran.dg/pr96102.f90 create mode 100644 gcc/testsuite/gfortran.dg/pr96312.f90 create mode 100644 libstdc++-v3/testsuite/24_iterators/insert_iterator/dr561.cc