From 2002-06-27 John David Anglin <dave@hiauly1.hia.nrc.ca>:

* regcache.c (supply_register): Add missing argument to
register_buffer call.
This commit is contained in:
Andrew Cagney 2002-06-27 18:28:23 +00:00
parent f30e5a77b9
commit 0b434a0046
2 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2002-06-27 Andrew Cagney <ac131313@redhat.com>
From 2002-06-27 John David Anglin <dave@hiauly1.hia.nrc.ca>:
* regcache.c (supply_register): Add missing argument to
register_buffer call.
2002-06-27 Andrew Cagney <ac131313@redhat.com>
* Makefile.in (init.c): Drop -e option to grep. Not necessary and

View File

@ -1003,7 +1003,8 @@ supply_register (int regnum, char *val)
values. */
#ifdef DEPRECATED_CLEAN_UP_REGISTER_VALUE
DEPRECATED_CLEAN_UP_REGISTER_VALUE (regnum, register_buffer (regnum));
DEPRECATED_CLEAN_UP_REGISTER_VALUE \
(regnum, register_buffer (current_regcache, regnum));
#endif
}