aboutsummaryrefslogtreecommitdiff
path: root/gdb/blockframe.c
diff options
context:
space:
mode:
authorTom Tromey <tom@tromey.com>2023-01-16 17:27:28 -0700
committerTom Tromey <tom@tromey.com>2023-02-19 12:51:05 -0700
commita4dfe747564a5728da7c79ca2be3659148c87a49 (patch)
tree4f6df11e4db1f8a68e829e7b41cfebf2ac7b00e2 /gdb/blockframe.c
parent7f5937df01cc829544baa921bfb81bfe0ccdc892 (diff)
downloadgdb-a4dfe747564a5728da7c79ca2be3659148c87a49.zip
gdb-a4dfe747564a5728da7c79ca2be3659148c87a49.tar.gz
gdb-a4dfe747564a5728da7c79ca2be3659148c87a49.tar.bz2
Convert block_inlined_p to method
This converts block_inlined_p to be a method. This was mostly written by script.
Diffstat (limited to 'gdb/blockframe.c')
-rw-r--r--gdb/blockframe.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/blockframe.c b/gdb/blockframe.c
index 0712548..2796fc9 100644
--- a/gdb/blockframe.c
+++ b/gdb/blockframe.c
@@ -72,7 +72,7 @@ get_frame_block (frame_info_ptr frame, CORE_ADDR *addr_in_block)
while (inline_count > 0)
{
- if (block_inlined_p (bl))
+ if (bl->inlined_p ())
inline_count--;
bl = bl->superblock ();