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/llvm-release-arm-spec2k6-Os in repository toolchain/ci/gcc.
from 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. adds f97862481a5 Daily bump. adds 4e9e0dab7a1 PR fortran/88379 - ICE with allocatable coarray, class and [...] adds 4ba3c53a298 Daily bump. adds 972c78d3f65 Backport to gcc-9 adds 35de2547db9 Daily bump. adds ed54352ccfc PR fortran/93337 - ICE in gfc_dt_upper_string, at fortran/m [...] adds 170b863585d Daily bump. adds 6fa3b3bbac9 accept <case> and [cond] in ChangeLog adds 006fda1b17a PR fortran/95709 - ICE in gfc_resolve_code, at fortran/reso [...] adds f69a6c40123 Daily bump. adds 21b27a61345 Daily bump. adds dc7a8afce35 Record and restore postorder information in breaking alias sccs. adds 8c25c91b117 Schedule reduction partition in the last.
No new revisions were added by this update.
Summary of changes: contrib/ChangeLog | 20 + 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 | 367 +++ contrib/gcc-changelog/test_patches.txt | 3197 ++++++++++++++++++++ gcc/ChangeLog | 21 + gcc/DATESTAMP | 2 +- gcc/config/arm/arm.c | 28 +- gcc/config/rs6000/altivec.h | 2 +- gcc/config/rs6000/altivec.md | 32 + gcc/config/rs6000/rs6000-builtin.def | 2 + gcc/config/rs6000/rs6000-c.c | 2 + gcc/config/rs6000/vsx.md | 10 + gcc/fortran/ChangeLog | 62 + gcc/fortran/class.c | 3 + gcc/fortran/decl.c | 2 +- gcc/fortran/resolve.c | 18 +- gcc/fortran/symbol.c | 4 +- gcc/fortran/trans-decl.c | 2 +- gcc/fortran/trans-stmt.c | 6 +- gcc/testsuite/ChangeLog | 69 + gcc/testsuite/g++.dg/tree-ssa/pr95638.C | 150 + .../gcc.c-torture/compile/packed-aligned-1.c | 11 + .../gcc.c-torture/execute/packed-aligned.c | 28 + gcc/testsuite/gcc.dg/tree-ssa/pr95804.c | 18 + .../gcc.target/powerpc/builtins-1-p9-runnable.c | 43 +- gcc/testsuite/gfortran.dg/pr71706.f90 | 10 + gcc/testsuite/gfortran.dg/pr88379.f90 | 11 + gcc/testsuite/gfortran.dg/pr93337.f90 | 10 + gcc/testsuite/gfortran.dg/pr95709.f90 | 12 + gcc/testsuite/gfortran.dg/pr95829.f90 | 14 + gcc/testsuite/gfortran.dg/pr95880.f90 | 9 + gcc/testsuite/gfortran.dg/recursive_check_16.f90 | 25 + gcc/tree-loop-distribution.c | 38 +- libstdc++-v3/ChangeLog | 22 + libstdc++-v3/include/bits/regex.h | 4 +- libstdc++-v3/include/std/variant | 3 +- libstdc++-v3/testsuite/20_util/variant/91807.cc | 35 + .../testsuite/28_regex/match_results/94627.cc | 75 + 42 files changed, 5379 insertions(+), 43 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/g++.dg/tree-ssa/pr95638.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/gcc.dg/tree-ssa/pr95804.c create mode 100644 gcc/testsuite/gfortran.dg/pr71706.f90 create mode 100644 gcc/testsuite/gfortran.dg/pr88379.f90 create mode 100644 gcc/testsuite/gfortran.dg/pr93337.f90 create mode 100644 gcc/testsuite/gfortran.dg/pr95709.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/recursive_check_16.f90 create mode 100644 libstdc++-v3/testsuite/20_util/variant/91807.cc create mode 100644 libstdc++-v3/testsuite/28_regex/match_results/94627.cc