From 05374cfd90b59c62f9230baa19e71a3d9ed27269 Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Mon, 28 Sep 2020 19:38:25 -0600 Subject: Turn target_can_execute_reverse into function This changes target_can_execute_reverse from an object-like macro to an inline function. gdb/ChangeLog 2020-09-28 Tom Tromey * mi/mi-main.c (exec_reverse_continue) (mi_cmd_list_target_features): Update. * infrun.c (set_exec_direction_func): Update. * target.c (default_execution_direction): Update. * reverse.c (exec_reverse_once): Update. * target.h (target_can_execute_reverse): Now a function. --- gdb/mi/mi-main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gdb/mi') diff --git a/gdb/mi/mi-main.c b/gdb/mi/mi-main.c index 99da554..c5c7be7 100644 --- a/gdb/mi/mi-main.c +++ b/gdb/mi/mi-main.c @@ -321,7 +321,7 @@ exec_reverse_continue (char **argv, int argc) if (dir == EXEC_REVERSE) error (_("Already in reverse mode.")); - if (!target_can_execute_reverse) + if (!target_can_execute_reverse ()) error (_("Target %s does not support this command."), target_shortname); scoped_restore save_exec_dir = make_scoped_restore (&execution_direction, @@ -1684,7 +1684,7 @@ mi_cmd_list_target_features (const char *command, char **argv, int argc) ui_out_emit_list list_emitter (uiout, "features"); if (mi_async_p ()) uiout->field_string (NULL, "async"); - if (target_can_execute_reverse) + if (target_can_execute_reverse ()) uiout->field_string (NULL, "reverse"); return; } -- cgit v1.1