diff options
author | Simon Marchi <simon.marchi@efficios.com> | 2021-11-20 21:32:41 -0500 |
---|---|---|
committer | Simon Marchi <simon.marchi@efficios.com> | 2022-02-06 16:03:46 -0500 |
commit | 012cfab919e7da355b2ac7f86674211cbce26041 (patch) | |
tree | da86dca9362d26fd408ce24b08dd8679a6c91769 /gdb/ada-lang.c | |
parent | 1ee2e9f9304d05f2962bbc4b83096b850fe4e433 (diff) | |
download | binutils-012cfab919e7da355b2ac7f86674211cbce26041.zip binutils-012cfab919e7da355b2ac7f86674211cbce26041.tar.gz binutils-012cfab919e7da355b2ac7f86674211cbce26041.tar.bz2 |
gdb: remove SYMTAB_BLOCKVECTOR macro
Remove the macro, replace with an equivalent method.
Change-Id: Id6fe2a79c04bcd6c69ccaefb7a69bc06a476288c
Diffstat (limited to 'gdb/ada-lang.c')
-rw-r--r-- | gdb/ada-lang.c | 4 |
1 files changed, 2 insertions, 2 deletions
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; |