OSDN Git Service

* trans-io.c (gfc_build_io_library_fndecls): Align pad.
authorsje <sje@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 18 Apr 2006 16:05:42 +0000 (16:05 +0000)
committersje <sje@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 18 Apr 2006 16:05:42 +0000 (16:05 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@113047 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/fortran/ChangeLog
gcc/fortran/trans-io.c

index 05e25db..01b8071 100644 (file)
@@ -1,3 +1,7 @@
+2006-04-18  Steve Ellcey  <sje@cup.hp.com>
+
+       * trans-io.c (gfc_build_io_library_fndecls): Align pad.
+
 2006-04-16  Thomas Koenig  <Thomas.Koenig@online.de>
 
        PR fortran/26017
index 9a60161..b4c83f4 100644 (file)
@@ -227,6 +227,14 @@ gfc_build_io_library_fndecls (void)
   pad_size += 32 * TREE_INT_CST_LOW (TYPE_SIZE_UNIT (integer_type_node));
   pad_idx = build_index_type (build_int_cst (NULL_TREE, pad_size));
   types[IOPARM_type_pad] = build_array_type (char_type_node, pad_idx);
+
+  /* pad actually contains pointers and integers so it needs to have an
+     alignment that is at least as large as the needed alignment for those
+     types.  See the st_parameter_dt structure in libgfortran/io/io.h for
+     what really goes into this space.  */
+  TYPE_ALIGN (types[IOPARM_type_pad]) = MAX (TYPE_ALIGN (pchar_type_node),
+                    TYPE_ALIGN (gfc_get_int_type (gfc_max_integer_kind)));
+
   gfc_c_int_type_node = gfc_get_int_type (gfc_c_int_kind);
 
   for (ptype = IOPARM_ptype_common; ptype < IOPARM_ptype_num; ptype++)