diff options
author | Simon Marchi <simon.marchi@ericsson.com> | 2017-10-12 21:42:05 -0400 |
---|---|---|
committer | Simon Marchi <simon.marchi@ericsson.com> | 2017-10-12 21:42:23 -0400 |
commit | c2508e905f956c5a5e0d2a7fff58b4c746180237 (patch) | |
tree | 31a2a35c6afeb25b60dddcbc94716cc1165d218e /gdb/arch-utils.h | |
parent | 3b4b0a629a972bf80fc0ac6202f89681fab1df37 (diff) | |
download | gdb-c2508e905f956c5a5e0d2a7fff58b4c746180237.zip gdb-c2508e905f956c5a5e0d2a7fff58b4c746180237.tar.gz gdb-c2508e905f956c5a5e0d2a7fff58b4c746180237.tar.bz2 |
Remove simple_displaced_step_copy_insn
Nothing uses this function. Remove it, and adjust comments referring to
it.
gdb/ChangeLog:
* arch-utils.h (simple_displaced_step_copy_insn): Remove.
* arch-utils.c (simple_displaced_step_copy_insn): Remove.
* gdbarch.sh (displaced_step_copy_insn): Adjust comment.
* gdbarch.h: Regenerate.
* i386-linux-tdep.c (i386_linux_displaced_step_copy_insn):
Adjust comment.
* i386-tdep.c (i386_displaced_step_copy_insn): Adjust comment.
(i386_displaced_step_fixup): Adjust comment.
* rs6000-tdep.c (ppc_displaced_step_copy_insn): Adjust comment.
Diffstat (limited to 'gdb/arch-utils.h')
-rw-r--r-- | gdb/arch-utils.h | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/gdb/arch-utils.h b/gdb/arch-utils.h index fa2908605..6d3c362 100644 --- a/gdb/arch-utils.h +++ b/gdb/arch-utils.h @@ -73,18 +73,6 @@ struct bp_manipulation_endian bp_manipulation_endian<sizeof (BREAK_INSN_LITTLE), \ BREAK_INSN_LITTLE, BREAK_INSN_BIG> -/* An implementation of gdbarch_displaced_step_copy_insn for - processors that don't need to modify the instruction before - single-stepping the displaced copy. - - Simply copy gdbarch_max_insn_length (ARCH) bytes from FROM to TO. - The closure is an array of that many bytes containing the - instruction's bytes, allocated with xmalloc. */ -extern struct displaced_step_closure * - simple_displaced_step_copy_insn (struct gdbarch *gdbarch, - CORE_ADDR from, CORE_ADDR to, - struct regcache *regs); - /* Default implementation of gdbarch_displaced_hw_singlestep. */ extern int default_displaced_step_hw_singlestep (struct gdbarch *, |