This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_bmk_tk1/gnu-release-arm-spec2k6-Os in repository toolchain/ci/gcc.
from d2132067ab2 Daily bump. adds b7a185371cb [HSA] Avoid ICE when "HSA does not implement indirect calls" adds cd32b2c51b9 hurd: libgcc unwinding support over signal trampolines adds 5e91fc4718e Daily bump. adds 4255258f670 Daily bump. adds b2246cd6e9f Daily bump. adds ebfec202cb2 Daily bump. adds ba654730710 Daily bump. adds 0e871a5b843 Daily bump. adds eb9a24a6b6b Fortran : ICE in resolve_fl_procedure PR95708 adds f541655e8b9 Fix memory corruption with vector and variant record adds 449246af10b PR fortran/95587 - ICE in gfc_target_encode_expr, at fortra [...] adds 84323d9fa75 PR fortran/95689 - ICE in check_sym_interfaces, at fortran/ [...] adds ea3f1f23478 Daily bump. adds ce2da7f82f4 libstdc++: Fix std::from_chars to ignore leading zeros in base 2 adds e3d976ae009 Revert "PR fortran/95689 - ICE in check_sym_interfaces, at [...] adds c66d68d1e1e Daily bump. adds 12cdfdd5b14 x96: Remove PTA_CLWB from PTA_ICELAKE_CLIENT adds 597b99c3221 Daily bump. adds 53bc489468c d: Fix ICE in uda_attribute_p when looking up unknown attribute adds 57096f5c52b d: Fix ICE during error recovery in semantic pass adds de6a3297416 Daily bump. adds cb797c730dd PR fortran/95881 - ICE in resolve_symbol, at fortran/resolv [...] adds d8f8749e9c8 Daily bump. adds d8d451ec344 Daily bump. adds c49ed508f1d Daily bump. adds dc0a5685641 Do not generate recursion check for compiler-generated procedures. adds 1b9f2e47a7d arm: Don't generate invalid LDRD insns adds 57aa039a755 Daily bump. adds a833478ca98 Fortran : Bogus error with additional blanks in type(*) PR95829 adds f60918f9605 PR fortran/95880 - ICE in gfc_add_type, at fortran/symbol.c:2030 adds 0c6cec5ce99 PR fortran/71706 - ICE on using sync images with -fcheck=bounds adds e4490e7771e libstdc++: Remove noexcept from match_results comparisons ( [...] adds 2f5922a5a0c Daily bump. adds 3a3e472c9f6 gcc-changelog: sync from master. adds eb77f6f1b74 PR libstdc++/91807 adds 709faac49c7 Daily bump. adds dd1d01bc446 Daily bump.
No new revisions were added by this update.
Summary of changes: contrib/ChangeLog | 10 + contrib/gcc-changelog/git_check_commit.py | 49 + contrib/gcc-changelog/git_commit.py | 676 +++++ contrib/gcc-changelog/git_email.py | 107 + contrib/gcc-changelog/git_repository.py | 78 + contrib/gcc-changelog/git_update_version.py | 145 + contrib/gcc-changelog/test_email.py | 363 +++ contrib/gcc-changelog/test_patches.txt | 3162 ++++++++++++++++++++ gcc/ChangeLog | 25 + gcc/DATESTAMP | 2 +- gcc/ada/ChangeLog | 5 + gcc/ada/gcc-interface/trans.c | 18 +- gcc/config/arm/arm.c | 28 +- gcc/config/i386/i386.h | 4 +- gcc/d/ChangeLog | 18 + gcc/d/d-attribs.cc | 9 +- gcc/d/dmd/expressionsem.c | 1 + gcc/fortran/ChangeLog | 83 + gcc/fortran/decl.c | 2 +- gcc/fortran/intrinsic.c | 6 +- gcc/fortran/match.c | 5 + gcc/fortran/resolve.c | 2 + gcc/fortran/symbol.c | 4 +- gcc/fortran/trans-decl.c | 2 +- gcc/fortran/trans-stmt.c | 6 +- gcc/hsa-gen.c | 9 +- gcc/testsuite/ChangeLog | 101 + .../c-c++-common/gomp/hsa-indirect-call-1.c | 24 + .../gcc.c-torture/compile/packed-aligned-1.c | 11 + .../gcc.c-torture/execute/packed-aligned.c | 28 + gcc/testsuite/gdc.dg/pr95173.d | 10 + gcc/testsuite/gdc.dg/pr95250.d | 18 + gcc/testsuite/gfortran.dg/pr71706.f90 | 10 + gcc/testsuite/gfortran.dg/pr95587.f90 | 13 + gcc/testsuite/gfortran.dg/pr95708.f90 | 6 + gcc/testsuite/gfortran.dg/pr95829.f90 | 14 + gcc/testsuite/gfortran.dg/pr95880.f90 | 9 + gcc/testsuite/gfortran.dg/pr95881.f90 | 11 + gcc/testsuite/gfortran.dg/recursive_check_16.f90 | 25 + libgcc/ChangeLog | 9 + libgcc/config.host | 8 +- libgcc/config/i386/gnu-unwind.h | 107 + libstdc++-v3/ChangeLog | 32 + libstdc++-v3/include/bits/regex.h | 4 +- libstdc++-v3/include/std/charconv | 8 +- libstdc++-v3/include/std/variant | 3 +- libstdc++-v3/testsuite/20_util/from_chars/1.cc | 19 +- libstdc++-v3/testsuite/20_util/from_chars/3.cc | 79 + libstdc++-v3/testsuite/20_util/variant/91807.cc | 35 + .../testsuite/28_regex/match_results/94627.cc | 75 + 50 files changed, 5430 insertions(+), 48 deletions(-) create mode 100755 contrib/gcc-changelog/git_check_commit.py create mode 100755 contrib/gcc-changelog/git_commit.py create mode 100755 contrib/gcc-changelog/git_email.py create mode 100755 contrib/gcc-changelog/git_repository.py create mode 100755 contrib/gcc-changelog/git_update_version.py create mode 100755 contrib/gcc-changelog/test_email.py create mode 100644 contrib/gcc-changelog/test_patches.txt create mode 100644 gcc/testsuite/c-c++-common/gomp/hsa-indirect-call-1.c create mode 100644 gcc/testsuite/gcc.c-torture/compile/packed-aligned-1.c create mode 100644 gcc/testsuite/gcc.c-torture/execute/packed-aligned.c create mode 100644 gcc/testsuite/gdc.dg/pr95173.d create mode 100644 gcc/testsuite/gdc.dg/pr95250.d create mode 100644 gcc/testsuite/gfortran.dg/pr71706.f90 create mode 100644 gcc/testsuite/gfortran.dg/pr95587.f90 create mode 100644 gcc/testsuite/gfortran.dg/pr95708.f90 create mode 100644 gcc/testsuite/gfortran.dg/pr95829.f90 create mode 100644 gcc/testsuite/gfortran.dg/pr95880.f90 create mode 100644 gcc/testsuite/gfortran.dg/pr95881.f90 create mode 100644 gcc/testsuite/gfortran.dg/recursive_check_16.f90 create mode 100644 libgcc/config/i386/gnu-unwind.h create mode 100644 libstdc++-v3/testsuite/20_util/from_chars/3.cc create mode 100644 libstdc++-v3/testsuite/20_util/variant/91807.cc create mode 100644 libstdc++-v3/testsuite/28_regex/match_results/94627.cc