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:
parent
66b77cb083
commit
d317855ebc
2 changed files with 5 additions and 0 deletions
|
@ -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.
|
||||
|
|
|
@ -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'
|
||||
|
|
Loading…
Add table
Reference in a new issue