2002-09-10 Andrew Cagney <cagney@redhat.com>
* infcmd.c (default_print_registers_info): Send all output to ``file'' instead of ``gdb_stdout''.
This commit is contained in:
parent
fc5cfef41b
commit
9d84ac84ef
2 changed files with 8 additions and 3 deletions
|
@ -1,3 +1,8 @@
|
|||
2002-09-10 Andrew Cagney <cagney@redhat.com>
|
||||
|
||||
* infcmd.c (default_print_registers_info): Send all output to
|
||||
``file'' instead of ``gdb_stdout''.
|
||||
|
||||
2002-09-10 Michael Snyder <msnyder@redhat.com>
|
||||
|
||||
* mips-tdep.c (mips_extract_struct_value_address): Make val a
|
||||
|
|
|
@ -1653,14 +1653,14 @@ default_print_registers_info (struct gdbarch *gdbarch,
|
|||
{
|
||||
/* Print the register in hex. */
|
||||
val_print (REGISTER_VIRTUAL_TYPE (i), virtual_buffer, 0, 0,
|
||||
gdb_stdout, 'x', 1, 0, Val_pretty_default);
|
||||
file, 'x', 1, 0, Val_pretty_default);
|
||||
/* If not a vector register, print it also according to its
|
||||
natural format. */
|
||||
if (TYPE_VECTOR (REGISTER_VIRTUAL_TYPE (i)) == 0)
|
||||
{
|
||||
printf_filtered ("\t");
|
||||
fprintf_filtered (file, "\t");
|
||||
val_print (REGISTER_VIRTUAL_TYPE (i), virtual_buffer, 0, 0,
|
||||
gdb_stdout, 0, 1, 0, Val_pretty_default);
|
||||
file, 0, 1, 0, Val_pretty_default);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue