mirror of
https://github.com/bminor/binutils-gdb.git
synced 2025-12-26 09:08:59 +00:00
2003-05-08 Andrew Cagney <cagney@redhat.com>
* mips-tdep.c (read_signed_register): New function, moved to here from "regcache.c". (read_signed_register_pid): Ditto. * regcache.c (read_signed_register_pid): Delete function, moved to "mips-tdep.c". (read_signed_register): Ditto. * regcache.h (read_signed_register): Delete declaration. (read_signed_register_pid): Delete declaration.
This commit is contained in:
@@ -1208,36 +1208,6 @@ read_register_pid (int regnum, ptid_t ptid)
|
||||
return retval;
|
||||
}
|
||||
|
||||
/* Return the contents of register REGNUM as a signed integer. */
|
||||
|
||||
LONGEST
|
||||
read_signed_register (int regnum)
|
||||
{
|
||||
void *buf = alloca (REGISTER_RAW_SIZE (regnum));
|
||||
deprecated_read_register_gen (regnum, buf);
|
||||
return (extract_signed_integer (buf, REGISTER_RAW_SIZE (regnum)));
|
||||
}
|
||||
|
||||
LONGEST
|
||||
read_signed_register_pid (int regnum, ptid_t ptid)
|
||||
{
|
||||
ptid_t save_ptid;
|
||||
LONGEST retval;
|
||||
|
||||
if (ptid_equal (ptid, inferior_ptid))
|
||||
return read_signed_register (regnum);
|
||||
|
||||
save_ptid = inferior_ptid;
|
||||
|
||||
inferior_ptid = ptid;
|
||||
|
||||
retval = read_signed_register (regnum);
|
||||
|
||||
inferior_ptid = save_ptid;
|
||||
|
||||
return retval;
|
||||
}
|
||||
|
||||
/* Store VALUE into the raw contents of register number REGNUM. */
|
||||
|
||||
void
|
||||
|
||||
Reference in New Issue
Block a user