mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-29 16:38:05 +08:00
2012-04-11 Tristan Gingold <gingold@adacore.com>
* i386-darwin-nat.c (i386_darwin_fetch_inferior_registers): Fix warning.
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
2012-04-11 Tristan Gingold <gingold@adacore.com>
|
||||||
|
|
||||||
|
* i386-darwin-nat.c (i386_darwin_fetch_inferior_registers): Fix
|
||||||
|
warning.
|
||||||
|
|
||||||
2012-04-11 Siva Chandra Reddy <sivachandra@google.com>
|
2012-04-11 Siva Chandra Reddy <sivachandra@google.com>
|
||||||
|
|
||||||
New command 'explore' which helps explore values and types in
|
New command 'explore' which helps explore values and types in
|
||||||
|
@ -71,7 +71,7 @@ i386_darwin_fetch_inferior_registers (struct target_ops *ops,
|
|||||||
{
|
{
|
||||||
printf_unfiltered (_("Error calling thread_get_state for "
|
printf_unfiltered (_("Error calling thread_get_state for "
|
||||||
"GP registers for thread 0x%lx\n"),
|
"GP registers for thread 0x%lx\n"),
|
||||||
current_thread);
|
(unsigned long) current_thread);
|
||||||
MACH_CHECK_ERROR (ret);
|
MACH_CHECK_ERROR (ret);
|
||||||
}
|
}
|
||||||
amd64_supply_native_gregset (regcache, &gp_regs.uts, -1);
|
amd64_supply_native_gregset (regcache, &gp_regs.uts, -1);
|
||||||
@ -91,7 +91,7 @@ i386_darwin_fetch_inferior_registers (struct target_ops *ops,
|
|||||||
{
|
{
|
||||||
printf_unfiltered (_("Error calling thread_get_state for "
|
printf_unfiltered (_("Error calling thread_get_state for "
|
||||||
"float registers for thread 0x%lx\n"),
|
"float registers for thread 0x%lx\n"),
|
||||||
current_thread);
|
(unsigned long) current_thread);
|
||||||
MACH_CHECK_ERROR (ret);
|
MACH_CHECK_ERROR (ret);
|
||||||
}
|
}
|
||||||
amd64_supply_fxsave (regcache, -1, &fp_regs.ufs.fs64.__fpu_fcw);
|
amd64_supply_fxsave (regcache, -1, &fp_regs.ufs.fs64.__fpu_fcw);
|
||||||
|
Reference in New Issue
Block a user