mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-07-09 17:15:25 +08:00
* i386gnu-nat.c (gnu_store_registers): Fix typo.
This commit is contained in:
@ -1,5 +1,7 @@
|
|||||||
2004-08-08 Mark Kettenis <kettenis@gnu.org>
|
2004-08-08 Mark Kettenis <kettenis@gnu.org>
|
||||||
|
|
||||||
|
* i386gnu-nat.c (gnu_store_registers): Fix typo.
|
||||||
|
|
||||||
* i386gnu-nat.c (gnu_store_registers): Use regcache_raw_collect
|
* i386gnu-nat.c (gnu_store_registers): Use regcache_raw_collect
|
||||||
instead of regcache_raw_supply when storing the registers.
|
instead of regcache_raw_supply when storing the registers.
|
||||||
|
|
||||||
|
@ -274,7 +274,7 @@ gnu_store_registers (int regno)
|
|||||||
proc_debug (thread, "storing register %s", REGISTER_NAME (regno));
|
proc_debug (thread, "storing register %s", REGISTER_NAME (regno));
|
||||||
|
|
||||||
gdb_assert (regcache_valid_p (regcache, regno));
|
gdb_assert (regcache_valid_p (regcache, regno));
|
||||||
regcache_craw_collect (regcache, regno, REG_ADDR (state, regno));
|
regcache_raw_collect (regcache, regno, REG_ADDR (state, regno));
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Restore the T bit. */
|
/* Restore the T bit. */
|
||||||
|
Reference in New Issue
Block a user