core: type->declaration is just one bit, make it a bitfield member

It isn't that much used and we need to make space for some new fields.

Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
This commit is contained in:
Arnaldo Carvalho de Melo 2022-02-08 15:16:18 -03:00
parent 742f04f89d
commit fac821246c
1 changed files with 1 additions and 1 deletions

View File

@ -1039,7 +1039,7 @@ struct type {
uint16_t max_tag_name_len;
uint16_t natural_alignment;
bool packed_attributes_inferred;
uint8_t declaration; /* only one bit used */
uint8_t declaration:1;
uint8_t definition_emitted:1;
uint8_t fwd_decl_emitted:1;
uint8_t resized:1;