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-arm-lts-defconfig in repository toolchain/ci/gcc.
from 3ef1f32ed2b libphobos: Move rt.sections modules to gcc.sections adds 3f7f912db42 Daily bump. adds c3e1a7555e7 Use gcc/sections/elf_shared.d on Solaris 11.5 (PR d/88150) adds 5b79027a12c Work around Solaris ld bug linking __tls_get_addr on 64-bit x86 adds 79c213076b5 Work around lack of dlpi_tls_modid before Solaris 11.5 adds 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 new 008ae11cbb5 PR lto/89358 * g++.dg/lto/pr89358_0.C: New testcase. * g [...]
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: ChangeLog | 10 + configure | 4 +- configure.ac | 4 +- gcc/ChangeLog | 6 + gcc/DATESTAMP | 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 | 34 + gcc/testsuite/g++.dg/lto/pr89358_0.C | 11 + gcc/testsuite/g++.dg/lto/pr89358_1.C | 7 + 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 + libgfortran/ChangeLog | 26 + libgfortran/runtime/ISO_Fortran_binding.c | 65 +- libphobos/ChangeLog | 61 + libphobos/Makefile.am | 6 +- libphobos/Makefile.in | 7 +- libphobos/configure | 5976 ++++++++++---------- libphobos/configure.ac | 39 + libphobos/configure.tgt | 10 +- libphobos/libdruntime/Makefile.am | 2 +- libphobos/libdruntime/Makefile.in | 9 +- libphobos/libdruntime/gcc/config.d.in | 3 + libphobos/libdruntime/gcc/sections/elf_shared.d | 67 +- libphobos/libdruntime/gcc/sections/package.d | 2 +- libphobos/libdruntime/gcc/sections/solaris.d | 126 - libphobos/m4/druntime/os.m4 | 36 + libphobos/src/Makefile.in | 2 + libphobos/src/libgphobos.spec.in | 3 + libphobos/testsuite/Makefile.in | 2 + 48 files changed, 4128 insertions(+), 3186 deletions(-) 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 delete mode 100644 libphobos/libdruntime/gcc/sections/solaris.d