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-arm-bootstrap_O1 in repository toolchain/ci/gcc.
from 9c7d5e8846e d: Merge upstream dmd 3982604c5, druntime bc58b1e9, phobos [...] adds db184a3453b libstdc++: Fix diagnostic pragma push that should be pop adds a5f65cf7ad6 pr103523: Check for PLUS/MINUS support adds 4a87a8e4b13 amdgcn: Change offload variable table discovery adds 2a1c3b69c01 PR ipa/103601: ICE compiling CSiBE in ipa-modref's insert_kill. adds 207775085ff param: Add missing . in description. adds 68fd247e15e Replace t-ppccomm by t-vxworks in libgcc/config/rs6000 adds ca1c7065e9d libstdc++: Fix definition of _GLIBCXX_NO_SLEEP config macro adds ffb632517fc libstdc++: Guard mutex and condvar with gthreads macro [PR103638] adds 8a404feb400 Remove assignment to STMP_FIXINC from t-vxworks adds 57b291c27ee Fix inaccuracies in VxWorks LINK_SPEC adds c82e492616e libstdc++: Some time_get fixes [PR78714] adds 982a2c9b786 libstdc++: Add std::time_get %r support [PR71367] adds bb6a1ebb858 Fortran: fix check for pointer dummy arguments with INTENT(IN) adds 0df964ba287 c++: Add test for C++23 auto(x) adds 1e2eee7b29e symtab: fix comment typo adds a2f4b4b76cd jit: set DECL_CONTEXT of RESULT_DECL [PR103562] adds b504917e43b libgcc, Darwin: Update darwin10 unwinder shim dependencies. adds 0bceef1671a Daily bump. new 2e8067041d1 libstdc++: check length in string append [PR103534]
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 | 39 +++ gcc/DATESTAMP | 2 +- gcc/config/gcn/mkoffload.c | 51 ++- gcc/config/t-vxworks | 1 - gcc/config/vxworks.h | 4 +- gcc/d/ChangeLog | 35 ++ gcc/fortran/ChangeLog | 9 + gcc/fortran/check.c | 32 +- gcc/fortran/expr.c | 9 +- gcc/ipa-modref-tree.h | 3 +- gcc/jit/ChangeLog | 6 + gcc/jit/jit-playback.c | 1 + gcc/params.opt | 2 +- gcc/symtab.c | 2 +- gcc/testsuite/ChangeLog | 25 ++ gcc/testsuite/g++.dg/cpp23/auto-fncast10.C | 18 ++ gcc/testsuite/g++.dg/warn/Wstringop-overflow-8.C | 10 + gcc/testsuite/gcc.dg/ipa/pr103601.c | 35 ++ gcc/testsuite/gcc.target/aarch64/pr103523.c | 8 + gcc/testsuite/gfortran.dg/move_alloc_8.f90 | 4 +- gcc/testsuite/gfortran.dg/pointer_intent_9.f90 | 33 ++ gcc/testsuite/jit.dg/all-non-failing-tests.h | 3 + gcc/testsuite/jit.dg/test-pr103562.c | 62 ++++ gcc/tree-vect-loop.c | 13 +- include/ChangeLog | 4 + include/gomp-constants.h | 2 +- libgcc/ChangeLog | 11 + libgcc/config.host | 4 +- libgcc/config/rs6000/t-vxworks | 1 + libgcc/config/t-darwin | 2 +- libgomp/ChangeLog | 6 + libgomp/plugin/plugin-gcn.c | 39 +-- libphobos/ChangeLog | 12 + libstdc++-v3/ChangeLog | 78 +++++ libstdc++-v3/acinclude.m4 | 2 +- libstdc++-v3/config.h.in | 6 +- libstdc++-v3/config/abi/pre/gnu.ver | 15 +- .../config/locale/dragonfly/time_members.cc | 4 +- libstdc++-v3/config/locale/generic/time_members.cc | 4 +- libstdc++-v3/config/locale/gnu/time_members.cc | 4 +- libstdc++-v3/configure | 2 +- libstdc++-v3/include/bits/atomic_timed_wait.h | 4 + libstdc++-v3/include/bits/basic_string.h | 8 +- libstdc++-v3/include/bits/char_traits.h | 2 +- libstdc++-v3/include/bits/locale_facets_nonio.h | 6 + libstdc++-v3/include/bits/locale_facets_nonio.tcc | 223 ++++++++----- .../testsuite/22_locale/time_get/get/char/3.cc | 356 +++++++++++++++++++++ .../testsuite/22_locale/time_get/get/char/71367.cc | 67 ++++ .../testsuite/22_locale/time_get/get/wchar_t/3.cc | 356 +++++++++++++++++++++ .../22_locale/time_get/get/wchar_t/71367.cc | 67 ++++ .../22_locale/time_get/get_date/char/12791.cc | 4 +- .../22_locale/time_get/get_date/wchar_t/12791.cc | 4 +- .../22_locale/time_get/get_time/char/2.cc | 2 +- .../22_locale/time_get/get_time/char/5.cc | 2 +- .../22_locale/time_get/get_time/wchar_t/2.cc | 2 +- .../22_locale/time_get/get_time/wchar_t/5.cc | 2 +- 56 files changed, 1511 insertions(+), 197 deletions(-) create mode 100644 gcc/testsuite/g++.dg/cpp23/auto-fncast10.C create mode 100644 gcc/testsuite/g++.dg/warn/Wstringop-overflow-8.C create mode 100644 gcc/testsuite/gcc.dg/ipa/pr103601.c create mode 100644 gcc/testsuite/gcc.target/aarch64/pr103523.c create mode 100644 gcc/testsuite/gfortran.dg/pointer_intent_9.f90 create mode 100644 gcc/testsuite/jit.dg/test-pr103562.c create mode 100644 libgcc/config/rs6000/t-vxworks create mode 100644 libstdc++-v3/testsuite/22_locale/time_get/get/char/3.cc create mode 100644 libstdc++-v3/testsuite/22_locale/time_get/get/char/71367.cc create mode 100644 libstdc++-v3/testsuite/22_locale/time_get/get/wchar_t/3.cc create mode 100644 libstdc++-v3/testsuite/22_locale/time_get/get/wchar_t/71367.cc