This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from 283b1a8dc27 [nvptx] Apply vector-partitionable routines workaround to d [...] new 77ddff12187 2019-01-12 Paul Thomas pault@gcc.gnu.org
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: gcc/fortran/ChangeLog | 16 + gcc/fortran/gfortran.texi | 95 +-- gcc/fortran/trans-array.c | 18 +- gcc/fortran/trans-array.h | 3 + gcc/fortran/trans-decl.c | 10 + gcc/fortran/trans-expr.c | 119 ++- gcc/fortran/trans.h | 2 + gcc/testsuite/gfortran.dg/ISO_Fortran_binding_1.c | 205 +++++ .../gfortran.dg/ISO_Fortran_binding_1.f90 | 244 ++++++ gcc/testsuite/gfortran.dg/ISO_Fortran_binding_2.c | 115 +++ .../gfortran.dg/ISO_Fortran_binding_2.f90 | 193 +++++ .../gfortran.dg/bind_c_array_params_2.f90 | 4 +- libgfortran/ChangeLog | 11 + libgfortran/ISO_Fortran_binding.h | 206 +++++ libgfortran/Makefile.am | 8 +- libgfortran/Makefile.in | 127 +-- libgfortran/configure | 28 +- libgfortran/gfortran.map | 10 + libgfortran/runtime/ISO_Fortran_binding.c | 864 +++++++++++++++++++++ 19 files changed, 2161 insertions(+), 117 deletions(-) create mode 100644 gcc/testsuite/gfortran.dg/ISO_Fortran_binding_1.c create mode 100644 gcc/testsuite/gfortran.dg/ISO_Fortran_binding_1.f90 create mode 100644 gcc/testsuite/gfortran.dg/ISO_Fortran_binding_2.c create mode 100644 gcc/testsuite/gfortran.dg/ISO_Fortran_binding_2.f90 create mode 100644 libgfortran/ISO_Fortran_binding.h create mode 100644 libgfortran/runtime/ISO_Fortran_binding.c