diff options
author | Paul Thomas <pault@gcc.gnu.org> | 2016-09-22 11:26:59 +0000 |
---|---|---|
committer | Paul Thomas <pault@gcc.gnu.org> | 2016-09-22 11:26:59 +0000 |
commit | 195d1431ff5b9903938f2ee1a6ed86df0cf9b115 (patch) | |
tree | 9b6f3986ccf569bca23281d89cc0f9230f8ef158 /gcc/fortran/interface.c | |
parent | cf352092e2ec219b0c841cb6e49d876a4b312bca (diff) | |
download | gcc-195d1431ff5b9903938f2ee1a6ed86df0cf9b115.zip gcc-195d1431ff5b9903938f2ee1a6ed86df0cf9b115.tar.gz gcc-195d1431ff5b9903938f2ee1a6ed86df0cf9b115.tar.bz2 |
re PR fortran/48298 ([F03] User-Defined Derived-Type IO (DTIO))
2016-09-22 Paul Thomas <pault@gcc.gnu.org>
PR fortran/48298
* gfortran.h : Place the pseudo operators INTRINSIC_FORMATTED
and INTRINSIC_UNFORMATTED after the sentinel in enum
gfc_intrinsic_op so that they do not appear as place holders
in module_write.
* interface.c (dtio_op): Comment on the special nature of the
pseudo operators INTRINSIC FORMATTED and INTRINSIC_UNFORMATTED.
From-SVN: r240349
Diffstat (limited to 'gcc/fortran/interface.c')
-rw-r--r-- | gcc/fortran/interface.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gcc/fortran/interface.c b/gcc/fortran/interface.c index 09f5a53..9a19fa7 100644 --- a/gcc/fortran/interface.c +++ b/gcc/fortran/interface.c @@ -115,7 +115,9 @@ fold_unary_intrinsic (gfc_intrinsic_op op) } -/* Return the operator depending on the DTIO moded string. */ +/* Return the operator depending on the DTIO moded string. Note that + these are not operators in the normal sense and so have been placed + beyond GFC_INTRINSIC_END in gfortran.h:enum gfc_intrinsic_op. */ static gfc_intrinsic_op dtio_op (char* mode) |