diff options
Diffstat (limited to 'gdb/ada-lang.c')
-rw-r--r-- | gdb/ada-lang.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/ada-lang.c b/gdb/ada-lang.c index bb9a16f..dfcaf12 100644 --- a/gdb/ada-lang.c +++ b/gdb/ada-lang.c @@ -5331,7 +5331,7 @@ ada_add_local_symbols (std::vector<struct block_symbol> &result, /* If we found a non-function match, assume that's the one. We only check this when finding a function boundary, so that we can accumulate all results from intervening blocks first. */ - if (BLOCK_FUNCTION (block) != nullptr && is_nonfunction (result)) + if (block->function () != nullptr && is_nonfunction (result)) return; block = BLOCK_SUPERBLOCK (block); @@ -13038,7 +13038,7 @@ ada_add_exceptions_from_frame (compiled_regex *preg, } } } - if (BLOCK_FUNCTION (block) != NULL) + if (block->function () != NULL) break; block = BLOCK_SUPERBLOCK (block); } |