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-master-aarch64-lts-defconfig in repository toolchain/ci/gcc.
from 20abc61cb86 Enable libphobos on Solaris 11/x86 adds 77999887211 PR d/87799 Fix D build on windows hosts adds 37684a4cd6a 2019-04-14 Paul Thomas pault@gcc.gnu.org adds 4aab72939c3 2019-04-14 Thomas Koenig tkoenig@gcc.gnu.org adds 008ae11cbb5 PR lto/89358 * g++.dg/lto/pr89358_0.C: New testcase. * g [...] adds 3b275f5d475 Daily bump. adds d71996db7a9 [NDS32] Provide one valid nds32 assembly instruction to che [...] new 39ebb01497b 2019-04-15 Dominique d'Humieres dominiq@gcc.gnu.org new 08dfb42801b [NDS32] Rewrite PIC/TLS patterns. new 0be984ed89d [NDS32] nds32*-*-linux* target using init_array/finit_array [...] new 48f42cbf10f [NDS32] Refine force unwind. Linux kernel only uses RT_SIGRETURN. new fc01d804ff1 Reorganize cgraph_node::clone_of_p
The 5 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: ChangeLog | 5 ++ configure | 2 +- configure.ac | 2 +- gcc/ChangeLog | 39 +++++++++ gcc/DATESTAMP | 2 +- gcc/cgraph.c | 30 ++++--- gcc/config.gcc | 1 + gcc/config/nds32/nds32-md-auxiliary.c | 43 +++++++--- gcc/config/nds32/nds32-protos.h | 3 + gcc/config/nds32/nds32-relax-opt.c | 19 +++-- gcc/config/nds32/nds32.md | 27 ++++++ gcc/configure | 2 +- gcc/configure.ac | 2 +- gcc/d/ChangeLog | 4 + gcc/d/d-system.h | 6 ++ gcc/fortran/ChangeLog | 28 ++++++ gcc/fortran/expr.c | 34 ++++++-- gcc/fortran/gfortran.h | 1 + gcc/fortran/trans-array.c | 54 +++++++++++- gcc/fortran/trans-decl.c | 73 ++++++++++++++++ gcc/fortran/trans-expr.c | 95 ++++----------------- gcc/fortran/trans.c | 3 + gcc/ipa-devirt.c | 22 ++++- gcc/testsuite/ChangeLog | 44 ++++++++++ gcc/testsuite/g++.dg/ipa/pr89693.C | 52 ++++++++++++ gcc/testsuite/g++.dg/lto/pr89358_0.C | 11 +++ gcc/testsuite/g++.dg/lto/pr89358_1.C | 7 ++ gcc/testsuite/gcc.dg/torture/pr90020.c | 2 + gcc/testsuite/gfortran.dg/ISO_Fortran_binding_1.c | 22 ++--- .../gfortran.dg/ISO_Fortran_binding_1.f90 | 14 +-- gcc/testsuite/gfortran.dg/ISO_Fortran_binding_10.c | 73 ++++++++++++++++ .../gfortran.dg/ISO_Fortran_binding_10.f90 | 99 ++++++++++++++++++++++ gcc/testsuite/gfortran.dg/ISO_Fortran_binding_11.c | 78 +++++++++++++++++ .../gfortran.dg/ISO_Fortran_binding_11.f90 | 81 ++++++++++++++++++ .../gfortran.dg/ISO_Fortran_binding_3.f90 | 25 +----- .../gfortran.dg/ISO_Fortran_binding_4.f90 | 4 +- gcc/testsuite/gfortran.dg/ISO_Fortran_binding_9.c | 14 +++ .../gfortran.dg/ISO_Fortran_binding_9.f90 | 28 ++++++ gcc/testsuite/gfortran.dg/bind_c_usage_33.f90 | 21 +++++ gcc/testsuite/gfortran.dg/bind_c_usage_33_c.c | 15 ++++ libgcc/ChangeLog | 6 ++ libgcc/config/nds32/linux-unwind.h | 9 +- libgfortran/ChangeLog | 26 ++++++ libgfortran/runtime/ISO_Fortran_binding.c | 65 +++++++------- 44 files changed, 986 insertions(+), 207 deletions(-) create mode 100644 gcc/testsuite/g++.dg/ipa/pr89693.C create mode 100644 gcc/testsuite/g++.dg/lto/pr89358_0.C create mode 100644 gcc/testsuite/g++.dg/lto/pr89358_1.C create mode 100644 gcc/testsuite/gfortran.dg/ISO_Fortran_binding_10.c create mode 100644 gcc/testsuite/gfortran.dg/ISO_Fortran_binding_10.f90 create mode 100644 gcc/testsuite/gfortran.dg/ISO_Fortran_binding_11.c create mode 100644 gcc/testsuite/gfortran.dg/ISO_Fortran_binding_11.f90 create mode 100644 gcc/testsuite/gfortran.dg/ISO_Fortran_binding_9.c create mode 100644 gcc/testsuite/gfortran.dg/ISO_Fortran_binding_9.f90 create mode 100644 gcc/testsuite/gfortran.dg/bind_c_usage_33.f90 create mode 100644 gcc/testsuite/gfortran.dg/bind_c_usage_33_c.c