From 012cfab919e7da355b2ac7f86674211cbce26041 Mon Sep 17 00:00:00 2001 From: Simon Marchi Date: Sat, 20 Nov 2021 21:32:41 -0500 Subject: gdb: remove SYMTAB_BLOCKVECTOR macro Remove the macro, replace with an equivalent method. Change-Id: Id6fe2a79c04bcd6c69ccaefb7a69bc06a476288c --- gdb/ada-lang.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gdb/ada-lang.c') diff --git a/gdb/ada-lang.c b/gdb/ada-lang.c index 2bb64ae..f3b8442 100644 --- a/gdb/ada-lang.c +++ b/gdb/ada-lang.c @@ -4384,9 +4384,9 @@ cache_symbol (const char *name, domain_enum domain, struct symbol *sym, the symbol is local or not, we check the block where we found it against the global and static blocks of its associated symtab. */ if (sym - && BLOCKVECTOR_BLOCK (SYMTAB_BLOCKVECTOR (symbol_symtab (sym)), + && BLOCKVECTOR_BLOCK (symbol_symtab (sym)->blockvector (), GLOBAL_BLOCK) != block - && BLOCKVECTOR_BLOCK (SYMTAB_BLOCKVECTOR (symbol_symtab (sym)), + && BLOCKVECTOR_BLOCK (symbol_symtab (sym)->blockvector (), STATIC_BLOCK) != block) return; -- cgit v1.1