mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-19 00:59:15 +08:00
gdb/sparc: Use default_unwind_pc
Make use of the default gdbarch method gdbarch_unwind_pc where possible. I have not tested this change but, by inspecting the code, I believe the default methods are equivalent to the code being deleted. gdb/ChangeLog: * sparc-tdep.c (sparc_unwind_pc): Delete. (sparc32_gdbarch_init): Don't register deleted function with gdbarch.
This commit is contained in:
@ -1114,13 +1114,6 @@ sparc_analyze_prologue (struct gdbarch *gdbarch, CORE_ADDR pc,
|
||||
return pc;
|
||||
}
|
||||
|
||||
static CORE_ADDR
|
||||
sparc_unwind_pc (struct gdbarch *gdbarch, struct frame_info *this_frame)
|
||||
{
|
||||
struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
|
||||
return frame_unwind_register_unsigned (this_frame, tdep->pc_regnum);
|
||||
}
|
||||
|
||||
/* Return PC of first real instruction of the function starting at
|
||||
START_PC. */
|
||||
|
||||
@ -1882,8 +1875,6 @@ sparc32_gdbarch_init (struct gdbarch_info info, struct gdbarch_list *arches)
|
||||
|
||||
set_gdbarch_dummy_id (gdbarch, sparc_dummy_id);
|
||||
|
||||
set_gdbarch_unwind_pc (gdbarch, sparc_unwind_pc);
|
||||
|
||||
frame_base_set_default (gdbarch, &sparc32_frame_base);
|
||||
|
||||
/* Hook in the DWARF CFI frame unwinder. */
|
||||
|
Reference in New Issue
Block a user