From 439247b656ce3bcfaa00fec7dbce70e65ca17cf5 Mon Sep 17 00:00:00 2001 From: Doug Evans Date: Tue, 18 Nov 2014 09:41:45 -0800 Subject: symtab.h (SYMTAB_BLOCKVECTOR): Renamed from BLOCKVECTOR. All uses updated. gdb/ChangeLog: * symtab.h (SYMTAB_BLOCKVECTOR): Renamed from BLOCKVECTOR. All uses updated. --- gdb/psymtab.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'gdb/psymtab.c') diff --git a/gdb/psymtab.c b/gdb/psymtab.c index 9cfc2c1..da22d21 100644 --- a/gdb/psymtab.c +++ b/gdb/psymtab.c @@ -513,7 +513,7 @@ lookup_symbol_aux_psymtabs (struct objfile *objfile, /* Note: While psymtab_to_symtab can return NULL if the partial symtab is empty, we can assume it won't here because lookup_partial_symbol succeeded. */ - const struct blockvector *bv = BLOCKVECTOR (stab); + const struct blockvector *bv = SYMTAB_BLOCKVECTOR (stab); struct block *block = BLOCKVECTOR_BLOCK (bv, block_index); /* Some caution must be observed with overloaded functions @@ -1266,7 +1266,7 @@ map_matching_symbols_psymtab (struct objfile *objfile, if (s == NULL) continue; - block = BLOCKVECTOR_BLOCK (BLOCKVECTOR (s), block_kind); + block = BLOCKVECTOR_BLOCK (SYMTAB_BLOCKVECTOR (s), block_kind); if (map_block (name, namespace, objfile, block, callback, data, match)) return; @@ -2037,7 +2037,7 @@ maintenance_check_psymtabs (char *ignore, int from_tty) /* Now do checks requiring the associated symtab. */ if (s == NULL) continue; - bv = BLOCKVECTOR (s); + bv = SYMTAB_BLOCKVECTOR (s); b = BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK); psym = objfile->static_psymbols.list + ps->statics_offset; length = ps->n_static_syms; -- cgit v1.1