mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-07-17 18:43:25 +08:00
* sparc-linux-tdep.c (sparc32_linux_svr4_fetch_link_map_offsets):
Remove function. (sparc32_linux_init_abi): Don't set solib_svr4_link_map_offsets.
This commit is contained in:
@ -1,5 +1,9 @@
|
|||||||
2004-10-10 Mark Kettenis <kettenis@gnu.org>
|
2004-10-10 Mark Kettenis <kettenis@gnu.org>
|
||||||
|
|
||||||
|
* sparc-linux-tdep.c (sparc32_linux_svr4_fetch_link_map_offsets):
|
||||||
|
Remove function.
|
||||||
|
(sparc32_linux_init_abi): Don't set solib_svr4_link_map_offsets.
|
||||||
|
|
||||||
* ada-lang.c (lim_warning): Re-implement as a varargs function.
|
* ada-lang.c (lim_warning): Re-implement as a varargs function.
|
||||||
(decode_packed_array_type, value_subscript_packed)
|
(decode_packed_array_type, value_subscript_packed)
|
||||||
(ada_evaluate_subexp, to_fixed_range_type): Remove redundant
|
(ada_evaluate_subexp, to_fixed_range_type): Remove redundant
|
||||||
|
@ -250,36 +250,6 @@ sparc32_linux_sigtramp_frame_sniffer (struct frame_info *next_frame)
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
static struct link_map_offsets *
|
|
||||||
sparc32_linux_svr4_fetch_link_map_offsets (void)
|
|
||||||
{
|
|
||||||
static struct link_map_offsets lmo;
|
|
||||||
static struct link_map_offsets *lmp = NULL;
|
|
||||||
|
|
||||||
if (lmp == NULL)
|
|
||||||
{
|
|
||||||
lmp = &lmo;
|
|
||||||
|
|
||||||
/* Everything we need is in the first 8 bytes. */
|
|
||||||
lmo.r_debug_size = 8;
|
|
||||||
lmo.r_map_offset = 4;
|
|
||||||
lmo.r_map_size = 4;
|
|
||||||
|
|
||||||
/* Everything we need is in the first 20 bytes. */
|
|
||||||
lmo.link_map_size = 20;
|
|
||||||
lmo.l_addr_offset = 0;
|
|
||||||
lmo.l_addr_size = 4;
|
|
||||||
lmo.l_name_offset = 4;
|
|
||||||
lmo.l_name_size = 4;
|
|
||||||
lmo.l_next_offset = 12;
|
|
||||||
lmo.l_next_size = 4;
|
|
||||||
lmo.l_prev_offset = 16;
|
|
||||||
lmo.l_prev_size = 4;
|
|
||||||
}
|
|
||||||
|
|
||||||
return lmp;
|
|
||||||
}
|
|
||||||
|
|
||||||
static void
|
static void
|
||||||
sparc32_linux_init_abi (struct gdbarch_info info, struct gdbarch *gdbarch)
|
sparc32_linux_init_abi (struct gdbarch_info info, struct gdbarch *gdbarch)
|
||||||
{
|
{
|
||||||
@ -294,9 +264,6 @@ sparc32_linux_init_abi (struct gdbarch_info info, struct gdbarch *gdbarch)
|
|||||||
set_gdbarch_long_double_format (gdbarch, &floatformat_ieee_double_big);
|
set_gdbarch_long_double_format (gdbarch, &floatformat_ieee_double_big);
|
||||||
|
|
||||||
frame_unwind_append_sniffer (gdbarch, sparc32_linux_sigtramp_frame_sniffer);
|
frame_unwind_append_sniffer (gdbarch, sparc32_linux_sigtramp_frame_sniffer);
|
||||||
|
|
||||||
set_solib_svr4_fetch_link_map_offsets
|
|
||||||
(gdbarch, sparc32_linux_svr4_fetch_link_map_offsets);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Provide a prototype to silence -Wmissing-prototypes. */
|
/* Provide a prototype to silence -Wmissing-prototypes. */
|
||||||
|
Reference in New Issue
Block a user