diff options
author | Andrew Cagney <cagney@redhat.com> | 2002-07-24 14:38:55 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2002-07-24 14:38:55 +0000 |
commit | 0818c12a55c2aba820b8f7c7774bcdc698b757ee (patch) | |
tree | 5346d40767be9a40d5a1971944d6a444ecbb036e /gdb/infrun.c | |
parent | bf4f22e6a631c7c4c824f6aa3e1ca79755573088 (diff) | |
download | gdb-0818c12a55c2aba820b8f7c7774bcdc698b757ee.zip gdb-0818c12a55c2aba820b8f7c7774bcdc698b757ee.tar.gz gdb-0818c12a55c2aba820b8f7c7774bcdc698b757ee.tar.bz2 |
2002-07-24 Andrew Cagney <cagney@redhat.com>
* regcache.h (regcache_raw_read, regcache_raw_write): Replace
regcache_read and regcache_write.
(regcache_raw_read_as_address): Replace regcache_read_as_address.
* regcache.c: Update.
* sh-tdep.c (sh64_push_arguments): Update comment.
(sh_pseudo_register_read): Update.
(sh_pseudo_register_write): Update.
(sh4_register_read): Update.
(sh4_register_write): Update.
(sh64_pseudo_register_read): Update.
(sh64_pseudo_register_write): Update.
(sh64_register_read): Update.
(sh64_register_write): Update.
* i386-tdep.c (i386_extract_return_value): Update.
(i386_extract_struct_value_address): Update.
(i386_extract_return_value): Update.
* blockframe.c (generic_read_register_dummy): Update.
(generic_call_dummy_register_unwind): Update
* infrun.c (write_inferior_status_register): Update.
Diffstat (limited to 'gdb/infrun.c')
-rw-r--r-- | gdb/infrun.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/infrun.c b/gdb/infrun.c index 7c47e44..672d5f9 100644 --- a/gdb/infrun.c +++ b/gdb/infrun.c @@ -3917,7 +3917,7 @@ write_inferior_status_register (struct inferior_status *inf_status, int regno, int size = REGISTER_RAW_SIZE (regno); void *buf = alloca (size); store_signed_integer (buf, size, val); - regcache_write (inf_status->registers, regno, buf); + regcache_raw_write (inf_status->registers, regno, buf); } /* Save all of the information associated with the inferior<==>gdb |