diff options
Diffstat (limited to 'gcc/fortran')
| -rw-r--r-- | gcc/fortran/ChangeLog | 4 | ||||
| -rw-r--r-- | gcc/fortran/io.c | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog index 373f0e6..5aafa48 100644 --- a/gcc/fortran/ChangeLog +++ b/gcc/fortran/ChangeLog @@ -1,3 +1,7 @@ +2005-11-29 Jakub Jelinek <jakub@redhat.com> + + * io.c (gfc_resolve_open): RESOLVE_TAG access field as well. + 2005-11-27 Bernhard Fischer <rep.nop@aon.at> * gfortran.h: remove superfluous whitespace and use GNU diff --git a/gcc/fortran/io.c b/gcc/fortran/io.c index 26c3356..9ef97e8 100644 --- a/gcc/fortran/io.c +++ b/gcc/fortran/io.c @@ -1149,6 +1149,7 @@ gfc_resolve_open (gfc_open * open) RESOLVE_TAG (&tag_iostat, open->iostat); RESOLVE_TAG (&tag_file, open->file); RESOLVE_TAG (&tag_status, open->status); + RESOLVE_TAG (&tag_e_access, open->access); RESOLVE_TAG (&tag_e_form, open->form); RESOLVE_TAG (&tag_e_recl, open->recl); |
