aboutsummaryrefslogtreecommitdiff
path: root/gdb/target.h
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
commit05374cfd90b59c62f9230baa19e71a3d9ed27269 (patch)
tree059e038abb0a1568752db28073eb6ed64ce78177 /gdb/target.h
parent9dccd06e8a4e55adb58d8ebe7f2ed7d9d7dc17de (diff)
downloadgdb-05374cfd90b59c62f9230baa19e71a3d9ed27269.zip
gdb-05374cfd90b59c62f9230baa19e71a3d9ed27269.tar.gz
gdb-05374cfd90b59c62f9230baa19e71a3d9ed27269.tar.bz2
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 <tom@tromey.com> * 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.
Diffstat (limited to 'gdb/target.h')
-rw-r--r--gdb/target.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/gdb/target.h b/gdb/target.h
index f58334a..ea777f2 100644
--- a/gdb/target.h
+++ b/gdb/target.h
@@ -2117,8 +2117,11 @@ extern int target_ranged_break_num_registers (void);
extern int target_masked_watch_num_registers (CORE_ADDR addr, CORE_ADDR mask);
/* Target can execute in reverse? */
-#define target_can_execute_reverse \
- current_top_target ()->can_execute_reverse ()
+static inline bool
+target_can_execute_reverse ()
+{
+ return current_top_target ()->can_execute_reverse ();
+}
extern const struct target_desc *target_read_description (struct target_ops *);