dwarves: Make two bitfield entries be bool

As we had 14 bits hole, so use them as bools, each taking one byte
but generating better/shorter code.

Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
This commit is contained in:
Arnaldo Carvalho de Melo 2009-12-05 18:31:16 -02:00
parent 42bb02cdfb
commit 800fd44d6b
1 changed files with 2 additions and 2 deletions

View File

@ -330,8 +330,8 @@ struct tag {
struct list_head node;
uint16_t type;
uint16_t tag;
uint16_t visited:1;
uint16_t top_level:1;
bool visited;
bool top_level;
uint16_t recursivity_level;
void *priv;
};