summaryrefslogtreecommitdiff
path: root/gdb/sparc64obsd-tdep.c
diff options
context:
space:
mode:
authorJim Blandy <jimb@codesourcery.com>2004-05-21 22:15:10 +0000
committerJim Blandy <jimb@codesourcery.com>2004-05-21 22:15:10 +0000
commit41c12290245e766bd885fc8fcfe7381d3b5caa4d (patch)
tree5d0797fd6d42c44b30024fa2f2b6f63e683e5fde /gdb/sparc64obsd-tdep.c
parent37a280d8f69a6de79340262d7e7bd77a348559b9 (diff)
downloadgdb-41c12290245e766bd885fc8fcfe7381d3b5caa4d.tar.gz
Allocate regset structures in the gdbarch's obstack, not using
xmalloc. * regset.c (regset_alloc): Renamed from regset_xmalloc. Add 'arch' argument. Allocate the regset on arch's obstack, not using xmalloc. * regset.h (regset_alloc): Update declaration. * am64-tdep.c (amd64_regset_from_core_section): Update call; pass gdbarch argument. * amd64obsd-tdep.c (amd64obsd_regset_from_core_section): Same. * i386-tdep.c (i386_regset_from_core_section): Same. * i386nbsd-tdep.c (i386nbsd_aout_regset_from_core_section): Same. * i386obsd-tdep.c (i386obsd_aout_regset_from_core_section): Same. * sparc64fbsd-tdep.c (sparc64fbsd_init_abi): Same. * sparc64nbsd-tdep.c (sparc64nbsd_init_abi): Same. * sparc64obsd-tdep.c (sparc64obsd_init_abi): Same. * sparcnbsd-tdep.c (sparc32nbsd_init_abi): Same.
Diffstat (limited to 'gdb/sparc64obsd-tdep.c')
-rw-r--r--gdb/sparc64obsd-tdep.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/gdb/sparc64obsd-tdep.c b/gdb/sparc64obsd-tdep.c
index b6bd88c1e05..e34df923a54 100644
--- a/gdb/sparc64obsd-tdep.c
+++ b/gdb/sparc64obsd-tdep.c
@@ -184,9 +184,8 @@ sparc64obsd_init_abi (struct gdbarch_info info, struct gdbarch *gdbarch)
{
struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
- tdep->gregset = regset_xmalloc (&sparc64obsd_core_gregset,
- sparc64obsd_supply_gregset,
- NULL);
+ tdep->gregset = regset_alloc (gdbarch, &sparc64obsd_core_gregset,
+ sparc64obsd_supply_gregset, NULL);
tdep->sizeof_gregset = 832;
frame_unwind_append_sniffer (gdbarch, sparc64obsd_sigtramp_frame_sniffer);