diff options
author | tobi <tobi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-08-31 14:06:48 +0000 |
---|---|---|
committer | tobi <tobi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-08-31 14:06:48 +0000 |
commit | 9ad094051bb168e78ce1948c4a816d52c34180d0 (patch) | |
tree | 03f0761ea8c07c55c2cd86b5b996c3027f155857 /gcc/fortran/trans-io.c | |
parent | 4de2453b7937223b636307c3a521e782b5ec0839 (diff) | |
download | gcc-9ad094051bb168e78ce1948c4a816d52c34180d0.tar.gz |
fortran/
* trans-decl.c, trans-expr.c, trans-io.c, trans-types.c: Replace
all occurences of 'gfc_strlen_type_node' by
'gfc_charlen_type_node'.
* trans-types.h: Same. Also update comment accordingly.
libgfortran/
* libgfortran.h: Replace 'gfc_strlen_type' by
'gfc_charlen_type'. Update comment accordingly.
* intrinsics/args.c, intrinsics/env.c, io/io.h, io/transfer.c:
Replace all occurences of 'gfc_strlen_type' by 'gfc_charlen_type'.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@86828 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/fortran/trans-io.c')
-rw-r--r-- | gcc/fortran/trans-io.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/fortran/trans-io.c b/gcc/fortran/trans-io.c index 56023b6fc69..d1bf736c0e7 100644 --- a/gcc/fortran/trans-io.c +++ b/gcc/fortran/trans-io.c @@ -333,7 +333,7 @@ gfc_build_io_library_fndecls (void) void_type_node, 5, pvoid_type_node, pvoid_type_node, gfc_int4_type_node, gfc_int4_type_node, - gfc_strlen_type_node); + gfc_charlen_type_node); iocall_set_nml_val_complex = gfc_build_library_function_decl (get_identifier (PREFIX("st_set_nml_var_complex")), void_type_node, 4, |