diff options
author | Jerry DeLisle <jvdelisle@gcc.gnu.org> | 2016-10-21 18:02:32 +0000 |
---|---|---|
committer | Jerry DeLisle <jvdelisle@gcc.gnu.org> | 2016-10-21 18:02:32 +0000 |
commit | 8b729f5c8f812ffebaddb6ef9bd22e7c0dea9f19 (patch) | |
tree | 7afbbbc8d65b13dd04b722173f6534b2312817a3 /libgfortran | |
parent | c82bc7eddab18bdbcaccc4e23f70792e0a75490e (diff) | |
download | gcc-8b729f5c8f812ffebaddb6ef9bd22e7c0dea9f19.zip gcc-8b729f5c8f812ffebaddb6ef9bd22e7c0dea9f19.tar.gz gcc-8b729f5c8f812ffebaddb6ef9bd22e7c0dea9f19.tar.bz2 |
re PR libfortran/78055 (Many new gfortran test failures)
2016-10-21 Jerry DeLisle <jvdelisle@gcc.gnu.org>
PR libfortran/78055
* io/io.h (st_parameter_dt): Restore GFC_IO_INT to maintain
alignment.
From-SVN: r241422
Diffstat (limited to 'libgfortran')
-rw-r--r-- | libgfortran/ChangeLog | 6 | ||||
-rw-r--r-- | libgfortran/io/io.h | 1 |
2 files changed, 7 insertions, 0 deletions
diff --git a/libgfortran/ChangeLog b/libgfortran/ChangeLog index 511458f..167a0f9 100644 --- a/libgfortran/ChangeLog +++ b/libgfortran/ChangeLog @@ -1,3 +1,9 @@ +2016-10-21 Jerry DeLisle <jvdelisle@gcc.gnu.org> + + PR libfortran/78055 + * io/io.h (st_parameter_dt): Restore GFC_IO_INT to maintain + alignment. + 2016-10-20 Jerry DeLisle <jvdelisle@gcc.gnu.org> * io/transfer.c (finalize_transfer): Free format data in child diff --git a/libgfortran/io/io.h b/libgfortran/io/io.h index edc520a..8b20389 100644 --- a/libgfortran/io/io.h +++ b/libgfortran/io/io.h @@ -514,6 +514,7 @@ typedef struct st_parameter_dt large enough to hold a complex value (two reals) of the largest kind. */ char value[32]; + GFC_IO_INT not_used; /* Needed for alignment. */ formatted_dtio fdtio_ptr; unformatted_dtio ufdtio_ptr; } p; |