X-Git-Url: http://drtracing.org/?a=blobdiff_plain;ds=sidebyside;f=gdb%2Fm32r-linux-nat.c;h=24beeca3b75cacc2d292aa8b1491cedd34f31f15;hb=a0776b131d7a154125fdc4d22b1dda967c790ae9;hp=3c723575df45e294f9d43f58d49e19beb8d8724f;hpb=73e1c03f93f0294b464dc2b67de1f9aaae84838d;p=deliverable%2Fbinutils-gdb.git diff --git a/gdb/m32r-linux-nat.c b/gdb/m32r-linux-nat.c index 3c723575df..24beeca3b7 100644 --- a/gdb/m32r-linux-nat.c +++ b/gdb/m32r-linux-nat.c @@ -1,6 +1,6 @@ /* Native-dependent code for GNU/Linux m32r. - Copyright (C) 2004-2018 Free Software Foundation, Inc. + Copyright (C) 2004-2020 Free Software Foundation, Inc. This file is part of GDB. @@ -150,11 +150,11 @@ fill_gregset (const struct regcache *regcache, continue; if (i != M32R_SP_REGNUM) - regcache_raw_collect (regcache, i, regp + regmap[i]); + regcache->raw_collect (i, regp + regmap[i]); else if (psw & 0x8000) - regcache_raw_collect (regcache, i, regp + SPU_REGMAP); + regcache->raw_collect (i, regp + SPU_REGMAP); else - regcache_raw_collect (regcache, i, regp + SPI_REGMAP); + regcache->raw_collect (i, regp + SPI_REGMAP); } } @@ -237,8 +237,9 @@ m32r_linux_nat_target::store_registers (struct regcache *regcache, int regno) _("Got request to store bad register number %d."), regno); } +void _initialize_m32r_linux_nat (); void -_initialize_m32r_linux_nat (void) +_initialize_m32r_linux_nat () { /* Register the target. */ linux_target = &the_m32r_linux_nat_target;