public inbox for gdb-cvs@sourceware.org
help / color / mirror / Atom feed
* [binutils-gdb] gdb: remove BLOCK_RANGE macro
@ 2022-04-28  2:39 Simon Marchi
  0 siblings, 0 replies; only message in thread
From: Simon Marchi @ 2022-04-28  2:39 UTC (permalink / raw)
  To: gdb-cvs

https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=59197b8a96d69b49044d722b4bf097a9cc46a912

commit 59197b8a96d69b49044d722b4bf097a9cc46a912
Author: Simon Marchi <simon.marchi@efficios.com>
Date:   Sun Feb 6 22:34:22 2022 -0500

    gdb: remove BLOCK_RANGE macro
    
    Replace with access through the block::ranges method.
    
    Change-Id: I50f3ed433b997c9f354e49bc6583f540ae4b6121

Diff:
---
 gdb/block.h | 6 +-----
 1 file changed, 1 insertion(+), 5 deletions(-)

diff --git a/gdb/block.h b/gdb/block.h
index 3782327c155..eb77f746037 100644
--- a/gdb/block.h
+++ b/gdb/block.h
@@ -215,10 +215,6 @@ struct global_block
   struct compunit_symtab *compunit_symtab;
 };
 
-/* Access range array for block BL.  */
-
-#define BLOCK_RANGE(bl)		(bl)->ranges ().data ()
-
 /* Are all addresses within a block contiguous?  */
 
 #define BLOCK_CONTIGUOUS_P(bl)	((bl)->ranges ().size () == 0 \
@@ -240,7 +236,7 @@ struct global_block
 
 #define BLOCK_ENTRY_PC(bl)	(BLOCK_CONTIGUOUS_P (bl) \
 				 ? bl->start () \
-				 : BLOCK_RANGE (bl)[0].start ())
+				 : bl->ranges ()[0].start ())
 
 struct blockvector
 {


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2022-04-28  2:39 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-04-28  2:39 [binutils-gdb] gdb: remove BLOCK_RANGE macro Simon Marchi

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).