From: Jason Merrill Date: Mon, 31 Mar 2003 20:25:11 +0000 (-0500) Subject: re PR java/10145 (java and c++ disagree about class layout) X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=adff28c38d207dc3a6007b81380407de0b3def57;p=gcc.git re PR java/10145 (java and c++ disagree about class layout) PR java/10145 * stor-layout.c (update_alignment_for_field): Respect DECL_USER_ALIGN for zero-length bitfields, too. * c-decl.c (finish_struct): Don't set DECL_ALIGN for normal fields. * cp/class.c (check_field_decl): Don't set DECL_ALIGN. From-SVN: r65103 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 076192bc5d3..545b048b933 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,11 @@ +2003-03-31 Jason Merrill + + PR java/10145 + * stor-layout.c (update_alignment_for_field): Respect + DECL_USER_ALIGN for zero-length bitfields, too. + * c-decl.c (finish_struct): Don't set DECL_ALIGN for normal + fields. + 2003-03-31 Matt Austern * cpppch.c (struct cpp_savedstate): Add defs and n_defs members. diff --git a/gcc/c-decl.c b/gcc/c-decl.c index d52823bde97..c9dd711f162 100644 --- a/gcc/c-decl.c +++ b/gcc/c-decl.c @@ -5257,18 +5257,6 @@ finish_struct (t, fieldlist, attributes) } } - else if (TREE_TYPE (x) != error_mark_node) - { - unsigned int min_align = (DECL_PACKED (x) ? BITS_PER_UNIT - : TYPE_ALIGN (TREE_TYPE (x))); - - /* Non-bit-fields are aligned for their type, except packed - fields which require only BITS_PER_UNIT alignment. */ - DECL_ALIGN (x) = MAX (DECL_ALIGN (x), min_align); - if (! DECL_PACKED (x)) - DECL_USER_ALIGN (x) |= TYPE_USER_ALIGN (TREE_TYPE (x)); - } - DECL_INITIAL (x) = 0; /* Detect flexible array member in an invalid context. */ diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 93df69d34a7..6eb6d818305 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,8 @@ +2003-03-31 Jason Merrill + + PR java/10145 + * class.c (check_field_decl): Don't set DECL_ALIGN. + 2003-03-30 Mark Mitchell PR c++/7647 diff --git a/gcc/cp/class.c b/gcc/cp/class.c index e899c571406..01d4dd215ed 100644 --- a/gcc/cp/class.c +++ b/gcc/cp/class.c @@ -3057,15 +3057,6 @@ check_field_decl (tree field, cp_error_at ("multiple fields in union `%T' initialized"); *any_default_members = 1; } - - /* Non-bit-fields are aligned for their type, except packed fields - which require only BITS_PER_UNIT alignment. */ - DECL_ALIGN (field) = MAX (DECL_ALIGN (field), - (DECL_PACKED (field) - ? BITS_PER_UNIT - : TYPE_ALIGN (TREE_TYPE (field)))); - if (! DECL_PACKED (field)) - DECL_USER_ALIGN (field) |= TYPE_USER_ALIGN (TREE_TYPE (field)); } /* Check the data members (both static and non-static), class-scoped diff --git a/gcc/stor-layout.c b/gcc/stor-layout.c index 6caaf5f70de..af02cad7c28 100644 --- a/gcc/stor-layout.c +++ b/gcc/stor-layout.c @@ -746,7 +746,8 @@ update_alignment_for_field (rli, field, known_align) { /* A zero-length bit-field affects the alignment of the next field. */ - if (!DECL_PACKED (field) && integer_zerop (DECL_SIZE (field))) + if (!DECL_PACKED (field) && !user_align + && integer_zerop (DECL_SIZE (field))) { desired_align = TYPE_ALIGN (type); #ifdef ADJUST_FIELD_ALIGN diff --git a/gcc/testsuite/gcc.dg/align-1.c b/gcc/testsuite/gcc.dg/align-1.c new file mode 100644 index 00000000000..cb6dcab3dcc --- /dev/null +++ b/gcc/testsuite/gcc.dg/align-1.c @@ -0,0 +1,24 @@ +// PR java/10145 +// Test that requesting an alignment of 1 does not increase the alignment +// of a long long field. + +// { dg-do run } + +struct A +{ + char c; + long long i; +}; + +struct B +{ + char c; + long long i __attribute ((__aligned__ (1))); +}; + +int main () +{ + if (sizeof (struct A) != sizeof (struct B)) + abort (); + return 0; +}