This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_kernel/gnu-release-aarch64-mainline-allyesconfig in repository toolchain/ci/gcc.
from 505b418a40a optabs: Don't create pseudos in prepare_cmp_insn when not a [...] adds ce3954262a6 gcc-changelog: sync from master. adds 9f2201bf48e c++: ICE with noexcept and canonical types [PR101715] adds c403f6ce077 Daily bump. adds 79b0091b13e rs6000: Remove GCC 8.1 U10__float128 mangling compatibility [...] adds 7857c8ab8ba Daily bump. adds 44d28c67b48 testsuite: Fix up pr104188.c testcase for i686-linux [PR104188] adds 276648888d2 Fortran: MOLD argument to TRANSFER intrinsic having storage [...] adds f3c7cb5fb8a Fortran: optional argument DIM for intrinsics NORM2, PARITY [...] adds 193e5ee46e5 aarch64: [PR101529] Fix vector shuffle insertion expansion adds c3251374af4 Fortran: fix simplification of TRANSFER for zero-sized char [...] adds 779d428cefe Daily bump. adds 5e6dd70f3a7 Sync git aliases from master. adds 06f179b7b48 Daily bump. adds 2aa4400cb98 c++: when delegating constructor throws [PR103711] adds cfcf6459810 c++: nested catch in ctor fn-try-block [PR61611]
No new revisions were added by this update.
Summary of changes: contrib/ChangeLog | 12 ++ contrib/gcc-changelog/git_commit.py | 12 +- contrib/gcc-changelog/test_email.py | 5 + contrib/gcc-changelog/test_patches.txt | 82 +++++++++ contrib/gcc-git-customization.sh | 7 +- contrib/git-descr.sh | 37 +++++ contrib/git-undescr.sh | 13 ++ gcc/ChangeLog | 134 +++++++++++++++ gcc/DATESTAMP | 2 +- gcc/c-family/ChangeLog | 20 +++ gcc/c/ChangeLog | 18 ++ gcc/config/aarch64/aarch64.c | 3 +- gcc/config/rs6000/rs6000-call.c | 12 -- gcc/config/rs6000/rs6000-internal.h | 3 - gcc/config/rs6000/rs6000.c | 53 +----- gcc/cp/ChangeLog | 42 +++++ gcc/cp/except.c | 20 ++- gcc/cp/init.c | 10 ++ gcc/cp/tree.c | 22 ++- gcc/fortran/ChangeLog | 31 ++++ gcc/fortran/check.c | 8 +- gcc/fortran/simplify.c | 13 +- gcc/testsuite/ChangeLog | 185 +++++++++++++++++++++ gcc/testsuite/g++.dg/cpp0x/noexcept72.C | 21 +++ gcc/testsuite/g++.dg/cpp0x/noexcept73.C | 13 ++ gcc/testsuite/g++.dg/eh/ctor-fntry1.C | 23 +++ gcc/testsuite/g++.dg/eh/delegating1.C | 28 ++++ gcc/testsuite/gcc.target/i386/pr104188.c | 3 +- gcc/testsuite/gfortran.dg/argument_checking_26.f90 | 14 ++ gcc/testsuite/gfortran.dg/transfer_check_6.f90 | 11 ++ gcc/testsuite/gfortran.dg/transfer_simplify_11.f90 | 2 +- gcc/testsuite/gfortran.dg/transfer_simplify_13.f90 | 34 ++++ libcpp/ChangeLog | 9 + 33 files changed, 815 insertions(+), 87 deletions(-) create mode 100755 contrib/git-descr.sh create mode 100755 contrib/git-undescr.sh create mode 100644 gcc/testsuite/g++.dg/cpp0x/noexcept72.C create mode 100644 gcc/testsuite/g++.dg/cpp0x/noexcept73.C create mode 100644 gcc/testsuite/g++.dg/eh/ctor-fntry1.C create mode 100644 gcc/testsuite/g++.dg/eh/delegating1.C create mode 100644 gcc/testsuite/gfortran.dg/argument_checking_26.f90 create mode 100644 gcc/testsuite/gfortran.dg/transfer_check_6.f90 create mode 100644 gcc/testsuite/gfortran.dg/transfer_simplify_13.f90