This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from 93dca43088d Add missing header for std::max_align_t new 3a7b4a0aea2 2018-07-25 Nicolas Koenig koenigni@gcc.gnu.org Thomas [...]
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 | 11 + gcc/fortran/gfortran.texi | 18 +- gcc/fortran/trans-decl.c | 3 +- gcc/fortran/trans-io.c | 5 +- gcc/testsuite/ChangeLog | 7 + gcc/testsuite/gfortran.dg/f2003_inquire_1.f03 | 4 +- gcc/testsuite/gfortran.dg/f2003_io_1.f03 | 2 + libgfortran/ChangeLog | 62 ++++ libgfortran/Makefile.am | 6 +- libgfortran/Makefile.in | 16 +- libgfortran/gfortran.map | 5 + libgfortran/io/async.c | 483 ++++++++++++++++++++++++++ libgfortran/io/async.h | 378 ++++++++++++++++++++ libgfortran/io/close.c | 11 +- libgfortran/io/file_pos.c | 70 +++- libgfortran/io/inquire.c | 49 ++- libgfortran/io/io.h | 29 +- libgfortran/io/open.c | 9 +- libgfortran/io/read.c | 2 + libgfortran/io/transfer.c | 309 +++++++++++++--- libgfortran/io/unit.c | 54 +-- libgfortran/io/unix.c | 29 +- libgfortran/libgfortran.h | 5 + libgfortran/runtime/error.c | 75 +++- libgomp/ChangeLog | 12 + 25 files changed, 1504 insertions(+), 150 deletions(-) create mode 100644 libgfortran/io/async.c create mode 100644 libgfortran/io/async.h