stor-layout.c (update_alignment_for_field): Guard use of ADJUST_FIELD_ALIGN with #ifdef.

* stor-layout.c (update_alignment_for_field): Guard use of
	ADJUST_FIELD_ALIGN with #ifdef.

From-SVN: r60422
This commit is contained in:
Mark Mitchell 2002-12-23 05:10:14 +00:00 committed by Mark Mitchell
parent 66b77cb083
commit d317855ebc
2 changed files with 5 additions and 0 deletions

View file

@ -1,5 +1,8 @@
2002-12-22 Mark Mitchell <mark@codesourcery.com>
* stor-layout.c (update_alignment_for_field): Guard use of
ADJUST_FIELD_ALIGN with #ifdef.
* stor-layout.c (update_alignment_for_field): Use
ADJUST_FIELD_ALIGN when computing the alignment for a zero-width
bitfield when PCC_BITFIELD_TYPE_MATTERS.

View file

@ -724,7 +724,9 @@ update_alignment_for_field (rli, field, known_align)
else if (! DECL_PACKED (field))
{
desired_align = TYPE_ALIGN (type);
#ifdef ADJUST_FIELD_ALIGN
desired_align = ADJUST_FIELD_ALIGN (field, desired_align);
#endif
}
/* A named bit field of declared type `int'