aboutsummaryrefslogtreecommitdiff
path: root/gdb/tui
diff options
context:
space:
mode:
authorTom Tromey <tom@tromey.com>2020-09-28 19:38:25 -0600
committerTom Tromey <tom@tromey.com>2020-09-28 19:52:21 -0600
commita739972c7c9818241fac0da589edb29adafc78c9 (patch)
treeab19c4558884aa6ea0c852249622992365748b88 /gdb/tui
parent5b8a477608a972184e03b6950965757a0d057543 (diff)
downloadgdb-a739972c7c9818241fac0da589edb29adafc78c9.zip
gdb-a739972c7c9818241fac0da589edb29adafc78c9.tar.gz
gdb-a739972c7c9818241fac0da589edb29adafc78c9.tar.bz2
Remove target_has_memory macro
This removes the target_has_memory object-like macro, replacing it with the underlying function. gdb/ChangeLog 2020-09-28 Tom Tromey <tom@tromey.com> * target.c (target_has_memory): Rename from target_has_memory_1. * tui/tui-regs.c (tui_data_window::show_registers): Update. * thread.c (scoped_restore_current_thread::restore) (scoped_restore_current_thread::scoped_restore_current_thread): Update. * frame.c (get_current_frame, has_stack_frames): Update. * target.h (target_has_memory): Remove macro. (target_has_memory): Rename from target_has_memory_1.
Diffstat (limited to 'gdb/tui')
-rw-r--r--gdb/tui/tui-regs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/tui/tui-regs.c b/gdb/tui/tui-regs.c
index 04d7469..d7d1304 100644
--- a/gdb/tui/tui-regs.c
+++ b/gdb/tui/tui-regs.c
@@ -182,7 +182,7 @@ tui_data_window::show_registers (struct reggroup *group)
if (group == 0)
group = general_reggroup;
- if (target_has_registers && target_has_stack && target_has_memory)
+ if (target_has_registers && target_has_stack && target_has_memory ())
{
show_register_group (group, get_selected_frame (NULL),
group == m_current_group);