diff options
author | Simon Marchi <simon.marchi@efficios.com> | 2022-02-06 22:54:03 -0500 |
---|---|---|
committer | Simon Marchi <simon.marchi@polymtl.ca> | 2022-04-27 22:05:03 -0400 |
commit | 63d609debba854d08a515f73d0ad8e4ef8948370 (patch) | |
tree | c5e6b2c9d4b48350c707316a48e69388524cdf66 /gdb/psymtab.c | |
parent | 6395b62847e581acc3e8fa179444b824d17b3d68 (diff) | |
download | gdb-63d609debba854d08a515f73d0ad8e4ef8948370.zip gdb-63d609debba854d08a515f73d0ad8e4ef8948370.tar.gz gdb-63d609debba854d08a515f73d0ad8e4ef8948370.tar.bz2 |
gdb: remove BLOCKVECTOR_BLOCK and BLOCKVECTOR_NBLOCKS macros
Replace with calls to blockvector::blocks, and the appropriate method
call on the returned array_view.
Change-Id: I04d1f39603e4d4c21c96822421431d9a029d8ddd
Diffstat (limited to 'gdb/psymtab.c')
-rw-r--r-- | gdb/psymtab.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/psymtab.c b/gdb/psymtab.c index ce29e19..402d608 100644 --- a/gdb/psymtab.c +++ b/gdb/psymtab.c @@ -1798,7 +1798,7 @@ maintenance_check_psymtabs (const char *ignore, int from_tty) if (cust == NULL) continue; bv = cust->blockvector (); - b = BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK); + b = bv->static_block (); for (partial_symbol *psym : ps->static_psymbols) { /* Skip symbols for inlined functions without address. These may @@ -1819,7 +1819,7 @@ maintenance_check_psymtabs (const char *ignore, int from_tty) gdb_printf (" psymtab\n"); } } - b = BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK); + b = bv->global_block (); for (partial_symbol *psym : ps->global_psymbols) { sym = block_lookup_symbol (b, psym->ginfo.search_name (), |