From c01feb367543270196672dedf9a8365a2d8d3cff Mon Sep 17 00:00:00 2001 From: Doug Evans Date: Tue, 23 Dec 2014 07:31:00 -0800 Subject: symtab.h (SYMBOL_DOMAIN_BITS): New macro. gdb/ChangeLog: * symtab.h (SYMBOL_DOMAIN_BITS): New macro. (struct symbol) : Use it. --- gdb/symtab.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'gdb/symtab.h') diff --git a/gdb/symtab.h b/gdb/symtab.h index 3a3384d..b3a9a6b 100644 --- a/gdb/symtab.h +++ b/gdb/symtab.h @@ -461,6 +461,10 @@ typedef enum domain_enum_tag COMMON_BLOCK_DOMAIN } domain_enum; +/* The number of bits in a symbol used to represent the domain. */ + +#define SYMBOL_DOMAIN_BITS 4 + extern const char *domain_name (domain_enum); /* Searching domains, used for `search_symbols'. Element numbers are @@ -714,7 +718,7 @@ struct symbol /* Domain code. */ - ENUM_BITFIELD(domain_enum_tag) domain : 6; + ENUM_BITFIELD(domain_enum_tag) domain : SYMBOL_DOMAIN_BITS; /* Address class. This holds an index into the 'symbol_impls' table. The actual enum address_class value is stored there, -- cgit v1.1