mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-24 18:44:20 +08:00
* regcache.c (regcache_raw_supply): Don't assert that BUF isn't a
null pointer. Fix typo in comment.
This commit is contained in:
parent
7bace51ba7
commit
a16d75cc48
@ -1,5 +1,8 @@
|
||||
2003-08-29 Mark Kettenis <kettenis@gnu.org>
|
||||
|
||||
* regcache.c (regcache_raw_supply): Don't assert that BUF isn't a
|
||||
null pointer. Fix typo in comment.
|
||||
|
||||
* regcache.c (supply_register): Reimplement to call
|
||||
regcache_raw_supply.
|
||||
(regcache_collect): Reimplement by calling regcache_raw_collect.
|
||||
|
@ -1241,7 +1241,7 @@ regcache_collect (int regnum, void *buf)
|
||||
regcache_raw_collect (current_regcache, regnum, buf);
|
||||
}
|
||||
|
||||
/* Supply register REGNUM, whose contents are store in BUF, to REGCACHE. */
|
||||
/* Supply register REGNUM, whose contents are stored in BUF, to REGCACHE. */
|
||||
|
||||
void
|
||||
regcache_raw_supply (struct regcache *regcache, int regnum, const void *buf)
|
||||
@ -1249,7 +1249,7 @@ regcache_raw_supply (struct regcache *regcache, int regnum, const void *buf)
|
||||
void *regbuf;
|
||||
size_t size;
|
||||
|
||||
gdb_assert (regcache != NULL && buf != NULL);
|
||||
gdb_assert (regcache != NULL);
|
||||
gdb_assert (regnum >= 0 && regnum < regcache->descr->nr_raw_registers);
|
||||
gdb_assert (!regcache->readonly_p);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user