mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-17 10:49:24 +08:00
re PR libfortran/38735 ([4.4 Regresssion] Default BLANK= mode for internal units is wrong)
2009-01-05 Jerry DeLisle <jvdelisle@gcc.gnu.org> PR libfortran/38735 * io/unit.c (get_internal_unit): Set default BLANK= status to NULL for internal units. From-SVN: r143102
This commit is contained in:
parent
6f9b088b5a
commit
8217a6359f
@ -1,3 +1,9 @@
|
||||
2009-01-05 Jerry DeLisle <jvdelisle@gcc.gnu.org>
|
||||
|
||||
PR libfortran/38735
|
||||
* io/unit.c (get_internal_unit): Set default BLANK= status to NULL for
|
||||
internal units.
|
||||
|
||||
2008-12-29 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
|
||||
|
||||
PR fortran/31832
|
||||
|
@ -437,7 +437,7 @@ get_internal_unit (st_parameter_dt *dtp)
|
||||
|
||||
iunit->flags.access = ACCESS_SEQUENTIAL;
|
||||
iunit->flags.action = ACTION_READWRITE;
|
||||
iunit->flags.blank = BLANK_UNSPECIFIED;
|
||||
iunit->flags.blank = BLANK_NULL;
|
||||
iunit->flags.form = FORM_FORMATTED;
|
||||
iunit->flags.pad = PAD_YES;
|
||||
iunit->flags.status = STATUS_UNSPECIFIED;
|
||||
|
Loading…
Reference in New Issue
Block a user