From f135fe728e2d0a6168a8445a50a6d63547c4db2f Mon Sep 17 00:00:00 2001 From: Simon Marchi Date: Fri, 28 Jan 2022 11:41:38 -0500 Subject: gdb: remove BLOCK_SUPERBLOCK macro Replace with equivalent methods. Change-Id: I334a319909a50b5cc5570a45c38c70e10dc00630 --- gdb/stack.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gdb/stack.c') diff --git a/gdb/stack.c b/gdb/stack.c index 35726b7..71d8598 100644 --- a/gdb/stack.c +++ b/gdb/stack.c @@ -2275,7 +2275,7 @@ iterate_over_block_local_vars (const struct block *block, symbols. */ if (block->function ()) break; - block = BLOCK_SUPERBLOCK (block); + block = block->superblock (); } } -- cgit v1.1