X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=gdb%2Fsparc64-obsd-nat.c;h=502599badec1248456a04e9787d20eaae1c09002;hb=e286671bf99ab870d67431068e863c1c57631b1f;hp=02ce9b5616c09fb0112b24f229c60fb3f01d7576;hpb=03b62bbbce3dc5f15131d9e78f77d035cd1cffb3;p=deliverable%2Fbinutils-gdb.git diff --git a/gdb/sparc64-obsd-nat.c b/gdb/sparc64-obsd-nat.c index 02ce9b5616..502599bade 100644 --- a/gdb/sparc64-obsd-nat.c +++ b/gdb/sparc64-obsd-nat.c @@ -1,6 +1,6 @@ /* Native-dependent code for OpenBSD/sparc64. - Copyright (C) 2003-2016 Free Software Foundation, Inc. + Copyright (C) 2003-2020 Free Software Foundation, Inc. This file is part of GDB. @@ -95,23 +95,23 @@ sparc64obsd_supply_pcb (struct regcache *regcache, struct pcb *pcb) read_memory(pcb->pcb_sp + BIAS - 176 + (11 * 8), (gdb_byte *)&pcb->pcb_pc, sizeof pcb->pcb_pc); - regcache_raw_supply (regcache, SPARC_SP_REGNUM, &pcb->pcb_sp); - regcache_raw_supply (regcache, SPARC64_PC_REGNUM, &pcb->pcb_pc); + regcache->raw_supply (SPARC_SP_REGNUM, &pcb->pcb_sp); + regcache->raw_supply (SPARC64_PC_REGNUM, &pcb->pcb_pc); state = pcb->pcb_pstate << 8 | pcb->pcb_cwp; - regcache_raw_supply (regcache, SPARC64_STATE_REGNUM, &state); + regcache->raw_supply (SPARC64_STATE_REGNUM, &state); sparc_supply_rwindow (regcache, pcb->pcb_sp, -1); return 1; } - -/* Provide a prototype to silence -Wmissing-prototypes. */ -void _initialize_sparc64obsd_nat (void); +/* Add some extra features to the generic SPARC target. */ +static sparc_target the_sparc64_obsd_nat_target; +void _initialize_sparc64obsd_nat (); void -_initialize_sparc64obsd_nat (void) +_initialize_sparc64obsd_nat () { sparc_supply_gregset = sparc64_supply_gregset; sparc_collect_gregset = sparc64_collect_gregset; @@ -124,7 +124,7 @@ _initialize_sparc64obsd_nat (void) sparc_fpregmap = &sparc64_bsd_fpregmap; /* Add some extra features to the generic SPARC target. */ - obsd_add_target (sparc_target ()); + add_inf_child_target (&the_sparc64_obsd_nat_target); /* Support debugging kernel virtual memory images. */ bsd_kvm_add_target (sparc64obsd_supply_pcb);