+2002-08-02 Andrew Cagney <cagney@redhat.com>
+
+ * regcache.c (regcache_cooked_read): Rename rawnum parameter to
+ regnum.
+ (regcache_cooked_write): Ditto.
+
2002-08-02 Andrew Cagney <ac131313@redhat.com>
* regcache.c (regcache_cooked_read): New function.
}
void
-regcache_cooked_read (struct regcache *regcache, int rawnum, void *buf)
+regcache_cooked_read (struct regcache *regcache, int regnum, void *buf)
{
gdb_assert (regnum >= 0);
gdb_assert (regnum < regcache->descr->nr_cooked_registers);
}
void
-regcache_cooked_write (struct regcache *regcache, int rawnum,
- const void *buf)
+regcache_cooked_write (struct regcache *regcache, int regnum, const void *buf)
{
gdb_assert (regnum >= 0);
gdb_assert (regnum < regcache->descr->nr_cooked_registers);