X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=gdb%2Fgdbarch.c;fp=gdb%2Fgdbarch.c;h=87007f3cb293cb8ac7fb6edc5a54693f12c86966;hb=588de28a67e74a367c511e02b832cb82e9d1d025;hp=55e4a67e2c5a9cc14be9c55001c1187b98ca63e9;hpb=bb88694d7308f6cd4a992c927b04703aaac34e56;p=deliverable%2Fbinutils-gdb.git diff --git a/gdb/gdbarch.c b/gdb/gdbarch.c index 55e4a67e2c..87007f3cb2 100644 --- a/gdb/gdbarch.c +++ b/gdb/gdbarch.c @@ -3926,7 +3926,7 @@ gdbarch_displaced_step_copy_insn_p (struct gdbarch *gdbarch) return gdbarch->displaced_step_copy_insn != NULL; } -displaced_step_closure_up +displaced_step_copy_insn_closure_up gdbarch_displaced_step_copy_insn (struct gdbarch *gdbarch, CORE_ADDR from, CORE_ADDR to, struct regcache *regs) { gdb_assert (gdbarch != NULL); @@ -3944,7 +3944,7 @@ set_gdbarch_displaced_step_copy_insn (struct gdbarch *gdbarch, } int -gdbarch_displaced_step_hw_singlestep (struct gdbarch *gdbarch, struct displaced_step_closure *closure) +gdbarch_displaced_step_hw_singlestep (struct gdbarch *gdbarch, struct displaced_step_copy_insn_closure *closure) { gdb_assert (gdbarch != NULL); gdb_assert (gdbarch->displaced_step_hw_singlestep != NULL); @@ -3968,7 +3968,7 @@ gdbarch_displaced_step_fixup_p (struct gdbarch *gdbarch) } void -gdbarch_displaced_step_fixup (struct gdbarch *gdbarch, struct displaced_step_closure *closure, CORE_ADDR from, CORE_ADDR to, struct regcache *regs) +gdbarch_displaced_step_fixup (struct gdbarch *gdbarch, struct displaced_step_copy_insn_closure *closure, CORE_ADDR from, CORE_ADDR to, struct regcache *regs) { gdb_assert (gdbarch != NULL); gdb_assert (gdbarch->displaced_step_fixup != NULL);