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/parse.c | |
parent | 1ee2e9f9304d05f2962bbc4b83096b850fe4e433 (diff) | |
download | gdb-012cfab919e7da355b2ac7f86674211cbce26041.zip gdb-012cfab919e7da355b2ac7f86674211cbce26041.tar.gz gdb-012cfab919e7da355b2ac7f86674211cbce26041.tar.bz2 |
gdb: remove SYMTAB_BLOCKVECTOR macro
Remove the macro, replace with an equivalent method.
Change-Id: Id6fe2a79c04bcd6c69ccaefb7a69bc06a476288c
Diffstat (limited to 'gdb/parse.c')
-rw-r--r-- | gdb/parse.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/parse.c b/gdb/parse.c index a6595e3..23f0e66 100644 --- a/gdb/parse.c +++ b/gdb/parse.c @@ -462,7 +462,7 @@ parse_exp_in_context (const char **stringptr, CORE_ADDR pc, struct symtab_and_line cursal = get_current_source_symtab_and_line (); if (cursal.symtab) expression_context_block - = BLOCKVECTOR_BLOCK (SYMTAB_BLOCKVECTOR (cursal.symtab), + = BLOCKVECTOR_BLOCK (cursal.symtab->blockvector (), STATIC_BLOCK); if (expression_context_block) expression_context_pc = BLOCK_ENTRY_PC (expression_context_block); |