diff options
author | Simon Marchi <simon.marchi@efficios.com> | 2022-01-28 11:41:38 -0500 |
---|---|---|
committer | Simon Marchi <simon.marchi@polymtl.ca> | 2022-04-27 22:05:03 -0400 |
commit | f135fe728e2d0a6168a8445a50a6d63547c4db2f (patch) | |
tree | 947174858fcdf60492112022ce9d87aff69d1ffd /gdb/ada-lang.c | |
parent | 6c00f721c834e2c622eb995a58f02900b6d98574 (diff) | |
download | gdb-f135fe728e2d0a6168a8445a50a6d63547c4db2f.zip gdb-f135fe728e2d0a6168a8445a50a6d63547c4db2f.tar.gz gdb-f135fe728e2d0a6168a8445a50a6d63547c4db2f.tar.bz2 |
gdb: remove BLOCK_SUPERBLOCK macro
Replace with equivalent methods.
Change-Id: I334a319909a50b5cc5570a45c38c70e10dc00630
Diffstat (limited to 'gdb/ada-lang.c')
-rw-r--r-- | gdb/ada-lang.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gdb/ada-lang.c b/gdb/ada-lang.c index dfcaf12..c06dbc2 100644 --- a/gdb/ada-lang.c +++ b/gdb/ada-lang.c @@ -5334,7 +5334,7 @@ ada_add_local_symbols (std::vector<struct block_symbol> &result, if (block->function () != nullptr && is_nonfunction (result)) return; - block = BLOCK_SUPERBLOCK (block); + block = block->superblock (); } } @@ -13040,7 +13040,7 @@ ada_add_exceptions_from_frame (compiled_regex *preg, } if (block->function () != NULL) break; - block = BLOCK_SUPERBLOCK (block); + block = block->superblock (); } } @@ -13662,9 +13662,9 @@ public: /* Search upwards from currently selected frame (so that we can complete on local vars. */ - for (b = get_selected_block (0); b != NULL; b = BLOCK_SUPERBLOCK (b)) + for (b = get_selected_block (0); b != NULL; b = b->superblock ()) { - if (!BLOCK_SUPERBLOCK (b)) + if (!b->superblock ()) surrounding_static_block = b; /* For elmin of dups */ ALL_BLOCK_SYMBOLS (b, iter, sym) |