gdb: remove BLOCK_RANGE macro
authorSimon Marchi <simon.marchi@efficios.com>
Mon, 7 Feb 2022 03:34:22 +0000 (22:34 -0500)
committerSimon Marchi <simon.marchi@polymtl.ca>
Thu, 28 Apr 2022 02:05:03 +0000 (22:05 -0400)
Replace with access through the block::ranges method.

Change-Id: I50f3ed433b997c9f354e49bc6583f540ae4b6121

gdb/block.h

index 3782327c155795381bc616cdaafbaca6e377956a..eb77f746037e71970aca3554b8c09303a12b8079 100644 (file)
@@ -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
 {