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_O1 in repository toolchain/ci/gcc.
from ea4911c4fa6 Daily bump. adds e6e6e0a9734 calls: When bypassing emit_push_insn for 0 sized arg, emit [...] adds 431414b5d93 openmp: Disable SSA form during gimplification on OMP_SIMD [...] adds 5065d69fca5 [nvptx] Add -mptx=_ in gcc.target/nvptx/smxx.c adds 12fa7641cee [nvptx] Use --no-verify for sm_30 adds 07667c911b1 [nvptx] Build libraries with misa=sm_30 adds 5b5e456f018 [nvptx] Build libraries with mptx=3.1 adds 88c4d85e27e openmp, fortran: Check that the type of an event handle in [...] adds e81cbab6195 configure: enable plugin support for ld.mold adds c083e654bd0 configure: use linker plug-in by default for ld.mold adds 51149a05b8c Call mark_dfs_back_edges before testing EDGE_DFS_BACK [PR104761]. adds 9805965e355 libstdc++: Implement std::strong_order for floating-point t [...] adds 64cdf499629 libstdc++: Fix test failure on AIX adds 5706a5db88a libstdc++: Use non-debug vector in constexpr test [PR104748] adds fc03ebdceaf Daily bump.
No new revisions were added by this update.
Summary of changes: gcc/ChangeLog | 45 ++++ gcc/DATESTAMP | 2 +- gcc/calls.cc | 7 + gcc/config/nvptx/nvptx.h | 2 +- gcc/config/nvptx/t-nvptx | 2 + gcc/configure | 2 + gcc/configure.ac | 2 + gcc/fortran/ChangeLog | 8 + gcc/fortran/openmp.cc | 34 ++- gcc/gimple-ssa-warn-access.cc | 5 +- gcc/gimplify.cc | 15 +- gcc/testsuite/ChangeLog | 30 +++ gcc/testsuite/g++.dg/warn/Wdangling-pointer-4.C | 22 ++ gcc/testsuite/gcc.dg/Wdangling-pointer-4.c | 22 ++ gcc/testsuite/gcc.dg/gomp/pr104757.c | 14 ++ gcc/testsuite/gcc.dg/pr104558.c | 15 ++ gcc/testsuite/gcc.target/nvptx/sm53.c | 2 +- gcc/testsuite/gcc.target/nvptx/sm70.c | 2 +- gcc/testsuite/gcc.target/nvptx/sm75.c | 2 +- gcc/testsuite/gcc.target/nvptx/sm80.c | 2 +- gcc/testsuite/gfortran.dg/gomp/pr104131.f90 | 26 +++ gcc/testsuite/gfortran.dg/gomp/pr104757.f90 | 19 ++ gcc/testsuite/gfortran.dg/gomp/task-detach-1.f90 | 4 +- libstdc++-v3/ChangeLog | 18 ++ libstdc++-v3/libsupc++/compare | 253 ++++++++++++++++++++- libstdc++-v3/testsuite/17_intro/names.cc | 2 + .../comparisons/algorithms/strong_order_floats.cc | 102 +++++++++ libstdc++-v3/testsuite/std/ranges/adaptors/all.cc | 16 +- 28 files changed, 644 insertions(+), 31 deletions(-) create mode 100644 gcc/testsuite/g++.dg/warn/Wdangling-pointer-4.C create mode 100644 gcc/testsuite/gcc.dg/Wdangling-pointer-4.c create mode 100644 gcc/testsuite/gcc.dg/gomp/pr104757.c create mode 100644 gcc/testsuite/gcc.dg/pr104558.c create mode 100644 gcc/testsuite/gfortran.dg/gomp/pr104131.f90 create mode 100644 gcc/testsuite/gfortran.dg/gomp/pr104757.f90 create mode 100644 libstdc++-v3/testsuite/18_support/comparisons/algorithms/strong [...]