This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from 5310392950a PR libstdc++/83626 handle ENOENT due to filesystem race new 9f4d9f83d3b PR 78534 Change character length from int to size_t
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 | 106 +++++++++++++++++++++++++ gcc/fortran/array.c | 2 +- gcc/fortran/class.c | 12 +-- gcc/fortran/decl.c | 12 +-- gcc/fortran/dump-parse-tree.c | 9 +-- gcc/fortran/expr.c | 76 +++++++++++++++--- gcc/fortran/frontend-passes.c | 4 +- gcc/fortran/gfortran.h | 23 +++++- gcc/fortran/gfortran.texi | 42 ++++++++-- gcc/fortran/iresolve.c | 15 ++-- gcc/fortran/match.c | 8 +- gcc/fortran/misc.c | 21 +++++ gcc/fortran/module.c | 60 +++++++++----- gcc/fortran/primary.c | 2 +- gcc/fortran/resolve.c | 28 ++++--- gcc/fortran/simplify.c | 23 ++++-- gcc/fortran/symbol.c | 2 +- gcc/fortran/target-memory.c | 19 ++--- gcc/fortran/target-memory.h | 2 +- gcc/fortran/trans-array.c | 17 ++-- gcc/fortran/trans-const.c | 12 +++ gcc/fortran/trans-const.h | 1 + gcc/fortran/trans-decl.c | 10 ++- gcc/fortran/trans-expr.c | 97 ++++++++++++---------- gcc/fortran/trans-intrinsic.c | 46 +++++------ gcc/fortran/trans-io.c | 7 +- gcc/fortran/trans-stmt.c | 23 +++--- gcc/fortran/trans-types.c | 12 ++- gcc/fortran/trans-types.h | 4 +- gcc/testsuite/ChangeLog | 14 ++++ gcc/testsuite/gfortran.dg/char_cast_1.f90 | 6 +- gcc/testsuite/gfortran.dg/dependency_49.f90 | 2 +- gcc/testsuite/gfortran.dg/repeat_4.f90 | 23 +++--- gcc/testsuite/gfortran.dg/repeat_7.f90 | 8 ++ gcc/testsuite/gfortran.dg/scan_2.f90 | 4 +- gcc/testsuite/gfortran.dg/string_1.f90 | 1 + gcc/testsuite/gfortran.dg/string_1_lp64.f90 | 15 ++++ gcc/testsuite/gfortran.dg/string_3.f90 | 1 + gcc/testsuite/gfortran.dg/string_3_lp64.f90 | 20 +++++ libgfortran/intrinsics/args.c | 10 +-- libgfortran/intrinsics/chmod.c | 3 +- libgfortran/intrinsics/env.c | 3 +- libgfortran/intrinsics/extends_type_of.c | 2 +- libgfortran/intrinsics/gerror.c | 2 +- libgfortran/intrinsics/getlog.c | 3 +- libgfortran/intrinsics/hostnm.c | 5 +- libgfortran/intrinsics/string_intrinsics_inc.c | 29 ++++--- libgfortran/io/transfer.c | 18 ++--- libgfortran/io/unit.c | 3 +- libgfortran/io/write.c | 2 +- libgfortran/libgfortran.h | 2 +- 51 files changed, 609 insertions(+), 262 deletions(-) create mode 100644 gcc/testsuite/gfortran.dg/repeat_7.f90 create mode 100644 gcc/testsuite/gfortran.dg/string_1_lp64.f90 create mode 100644 gcc/testsuite/gfortran.dg/string_3_lp64.f90