diff options
Diffstat (limited to 'gdb/target.c')
-rw-r--r-- | gdb/target.c | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/gdb/target.c b/gdb/target.c index 569c999..d66560a 100644 --- a/gdb/target.c +++ b/gdb/target.c @@ -105,9 +105,6 @@ static char *default_pid_to_str (struct target_ops *ops, ptid_t ptid); static enum exec_direction_kind default_execution_direction (struct target_ops *self); -static CORE_ADDR default_target_decr_pc_after_break (struct target_ops *ops, - struct gdbarch *gdbarch); - static struct target_ops debug_target; #include "target-delegates.c" @@ -3572,23 +3569,6 @@ target_get_tailcall_unwinder (void) return current_target.to_get_tailcall_unwinder (¤t_target); } -/* Default implementation of to_decr_pc_after_break. */ - -static CORE_ADDR -default_target_decr_pc_after_break (struct target_ops *ops, - struct gdbarch *gdbarch) -{ - return gdbarch_decr_pc_after_break (gdbarch); -} - -/* See target.h. */ - -CORE_ADDR -target_decr_pc_after_break (struct gdbarch *gdbarch) -{ - return current_target.to_decr_pc_after_break (¤t_target, gdbarch); -} - /* See target.h. */ void |