diff options
Diffstat (limited to 'gdb/target.h')
-rw-r--r-- | gdb/target.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/gdb/target.h b/gdb/target.h index a7c2e82..c95e1a4 100644 --- a/gdb/target.h +++ b/gdb/target.h @@ -1157,13 +1157,6 @@ struct target_ops const struct frame_unwind *(*to_get_tailcall_unwinder) (struct target_ops *self) TARGET_DEFAULT_RETURN (NULL); - /* Return the number of bytes by which the PC needs to be decremented - after executing a breakpoint instruction. - Defaults to gdbarch_decr_pc_after_break (GDBARCH). */ - CORE_ADDR (*to_decr_pc_after_break) (struct target_ops *ops, - struct gdbarch *gdbarch) - TARGET_DEFAULT_FUNC (default_target_decr_pc_after_break); - /* Prepare to generate a core file. */ void (*to_prepare_to_generate_core) (struct target_ops *) TARGET_DEFAULT_IGNORE (); @@ -2328,9 +2321,6 @@ extern void target_call_history_from (ULONGEST begin, int size, int flags); /* See to_call_history_range. */ extern void target_call_history_range (ULONGEST begin, ULONGEST end, int flags); -/* See to_decr_pc_after_break. */ -extern CORE_ADDR target_decr_pc_after_break (struct gdbarch *gdbarch); - /* See to_prepare_to_generate_core. */ extern void target_prepare_to_generate_core (void); |