dwarves: base_type->float_type holds only 12 possible values

So make it a :4 u8 to combine with the previous bitfield. This field is
also seldom used so no expected perf hit.

Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
This commit is contained in:
Arnaldo Carvalho de Melo 2009-12-05 19:07:51 -02:00
parent c6d27e325c
commit 25cd635806
1 changed files with 1 additions and 1 deletions

View File

@ -1069,7 +1069,7 @@ struct base_type {
uint8_t is_signed:1;
uint8_t is_bool:1;
uint8_t is_varargs:1;
uint8_t float_type;
uint8_t float_type:4;
};
static inline struct base_type *tag__base_type(const struct tag *self)