diff options
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/symtab.h | 6 |
2 files changed, 10 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 560ea90..acf692f 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,10 @@ 2014-12-23 Doug Evans <xdje42@gmail.com> + * symtab.h (SYMBOL_DOMAIN_BITS): New macro. + (struct symbol) <domain>: Use it. + +2014-12-23 Doug Evans <xdje42@gmail.com> + * symtab.c (initialize_objfile_symbol): Renamed from initialize_symbol. All callers updated. 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, |