aboutsummaryrefslogtreecommitdiff
path: root/gdb/block.c
diff options
context:
space:
mode:
authorSimon Marchi <simon.marchi@polymtl.ca>2022-04-20 17:17:11 -0400
committerSimon Marchi <simon.marchi@polymtl.ca>2022-04-27 22:05:03 -0400
commit414705d1c2d359694459d3991a0975d051ac70b5 (patch)
tree201d88e54b350f7a39e38863cb15fb5b4930a34b /gdb/block.c
parentbad9471aab31d1b5aa733b8985b8e40e2a97b8e7 (diff)
downloadgdb-414705d1c2d359694459d3991a0975d051ac70b5.zip
gdb-414705d1c2d359694459d3991a0975d051ac70b5.tar.gz
gdb-414705d1c2d359694459d3991a0975d051ac70b5.tar.bz2
gdb: remove BLOCKVECTOR_MAP macro
Replace with equivalent methods. Change-Id: I4e56c76dfc363c1447686fb29c4212ea18b4dba0
Diffstat (limited to 'gdb/block.c')
-rw-r--r--gdb/block.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/block.c b/gdb/block.c
index 1c3a003..39a39df 100644
--- a/gdb/block.c
+++ b/gdb/block.c
@@ -138,8 +138,8 @@ find_block_in_blockvector (const struct blockvector *bl, CORE_ADDR pc)
/* If we have an addrmap mapping code addresses to blocks, then use
that. */
- if (BLOCKVECTOR_MAP (bl))
- return (const struct block *) addrmap_find (BLOCKVECTOR_MAP (bl), pc);
+ if (bl->map () != nullptr)
+ return (const struct block *) addrmap_find (bl->map (), pc);
/* Otherwise, use binary search to find the last block that starts
before PC.