diff options
author | Richard Kenner <kenner@vlsi1.ultra.nyu.edu> | 2001-07-01 23:23:28 +0000 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 2001-07-01 19:23:28 -0400 |
commit | 21266f819aad25cada32bd25f75ad1246f981190 (patch) | |
tree | acbf08152155ff7bf87b612ae12c525c23017a25 | |
parent | 1cc5e432405e37e645baae60e725f93b048d19e7 (diff) | |
download | gcc-21266f819aad25cada32bd25f75ad1246f981190.zip gcc-21266f819aad25cada32bd25f75ad1246f981190.tar.gz gcc-21266f819aad25cada32bd25f75ad1246f981190.tar.bz2 |
c-common.c (decl_attributes, [...]): Don't call layout_decl for FIELD_DECL.
* c-common.c (decl_attributes, case A_MODE): Don't call layout_decl
for FIELD_DECL.
From-SVN: r43682
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/c-common.c | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 8149242..4631a62 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +Sun Jul 1 11:53:52 2001 Richard Kenner <kenner@vlsi1.ultra.nyu.edu> + + * c-common.c (decl_attributes, case A_MODE): Don't call layout_decl + for FIELD_DECL. + 2001-07-01 Geoffrey Keating <geoffk@redhat.com> * doc/tm.texi (FUNCTION_ARG): Document that the last call diff --git a/gcc/c-common.c b/gcc/c-common.c index 0990f23..f398599 100644 --- a/gcc/c-common.c +++ b/gcc/c-common.c @@ -970,7 +970,8 @@ decl_attributes (node, attributes, prefix_attributes) TREE_UNSIGNED (type) ? "uintmax_t" : "intmax_t"); TREE_TYPE (decl) = type = typefm; DECL_SIZE (decl) = DECL_SIZE_UNIT (decl) = 0; - layout_decl (decl, 0); + if (TREE_CODE (decl) != FIELD_DECL) + layout_decl (decl, 0); } } break; |