diff --git a/libobjc/ChangeLog b/libobjc/ChangeLog index 34c3e8e8b0c2..544292402ccd 100644 --- a/libobjc/ChangeLog +++ b/libobjc/ChangeLog @@ -1,3 +1,8 @@ +2015-04-29 Trevor Saunders + + * encoding.c (objc_layout_structure_next_member): Check the value of + PCC_BITFIELD_TYPE_MATTERS not if it is defined. + 2015-02-05 Rainer Orth PR libobjc/63765 diff --git a/libobjc/encoding.c b/libobjc/encoding.c index 73339086086b..20ace465916d 100644 --- a/libobjc/encoding.c +++ b/libobjc/encoding.c @@ -1167,7 +1167,7 @@ objc_layout_structure_next_member (struct objc_struct_layout *layout) /* Record must have at least as much alignment as any field. Otherwise, the alignment of the field within the record is meaningless. */ -#ifndef PCC_BITFIELD_TYPE_MATTERS +#if !PCC_BITFIELD_TYPE_MATTERS layout->record_align = MAX (layout->record_align, desired_align); #else /* PCC_BITFIELD_TYPE_MATTERS */ if (*type == _C_BFLD)