This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from d6dd1b6 Remove arbitrary limits from rich_location new 9f732c4 2016-08-31 Paul Thomas pault@gcc.gnu.org Jerry DeLisle [...]
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 | 58 +++++ gcc/fortran/decl.c | 4 + gcc/fortran/gfortran.h | 23 +- gcc/fortran/interface.c | 393 +++++++++++++++++++++++++++-- gcc/fortran/io.c | 88 ++++++- gcc/fortran/match.c | 6 + gcc/fortran/resolve.c | 136 ++++++++-- gcc/fortran/symbol.c | 9 + gcc/fortran/trans-decl.c | 10 + gcc/fortran/trans-expr.c | 22 +- gcc/fortran/trans-io.c | 266 +++++++++++++++----- gcc/testsuite/ChangeLog | 15 ++ gcc/testsuite/gfortran.dg/dtio_1.f90 | 164 ++++++++++++ gcc/testsuite/gfortran.dg/dtio_10.f90 | 27 ++ gcc/testsuite/gfortran.dg/dtio_2.f90 | 71 ++++++ gcc/testsuite/gfortran.dg/dtio_3.f90 | 172 +++++++++++++ gcc/testsuite/gfortran.dg/dtio_4.f90 | 107 ++++++++ gcc/testsuite/gfortran.dg/dtio_5.f90 | 278 +++++++++++++++++++++ gcc/testsuite/gfortran.dg/dtio_6.f90 | 98 ++++++++ gcc/testsuite/gfortran.dg/dtio_7.f90 | 139 +++++++++++ gcc/testsuite/gfortran.dg/dtio_8.f90 | 65 +++++ gcc/testsuite/gfortran.dg/dtio_9.f90 | 66 +++++ libgfortran/ChangeLog | 50 +++- libgfortran/gfortran.map | 20 +- libgfortran/io/format.c | 87 ++++++- libgfortran/io/format.h | 10 +- libgfortran/io/io.h | 50 +++- libgfortran/io/list_read.c | 99 +++++++- libgfortran/io/transfer.c | 457 ++++++++++++++++++++++++++-------- libgfortran/io/unit.c | 32 +-- libgfortran/io/unix.c | 2 +- libgfortran/io/write.c | 158 +++++++++--- 32 files changed, 2895 insertions(+), 287 deletions(-) create mode 100644 gcc/testsuite/gfortran.dg/dtio_1.f90 create mode 100644 gcc/testsuite/gfortran.dg/dtio_10.f90 create mode 100644 gcc/testsuite/gfortran.dg/dtio_2.f90 create mode 100644 gcc/testsuite/gfortran.dg/dtio_3.f90 create mode 100644 gcc/testsuite/gfortran.dg/dtio_4.f90 create mode 100644 gcc/testsuite/gfortran.dg/dtio_5.f90 create mode 100644 gcc/testsuite/gfortran.dg/dtio_6.f90 create mode 100644 gcc/testsuite/gfortran.dg/dtio_7.f90 create mode 100644 gcc/testsuite/gfortran.dg/dtio_8.f90 create mode 100644 gcc/testsuite/gfortran.dg/dtio_9.f90