mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-02-11 13:02:10 +08:00
Consistently use fprintf_filtered when displaying MIPS registers.
One line was using printf_filtered instead of fprintf_filtered to the requested file. gdb/ChangeLog: * mips-tdep.c (print_gp_register_row): Replace printf_filtered with fprintf_filtered.
This commit is contained in:
parent
750eaa47f1
commit
428544e8ae
@ -1,3 +1,8 @@
|
||||
2017-04-28 John Baldwin <jhb@FreeBSD.org>
|
||||
|
||||
* mips-tdep.c (print_gp_register_row): Replace printf_filtered
|
||||
with fprintf_filtered.
|
||||
|
||||
2017-04-28 Yao Qi <yao.qi@linaro.org>
|
||||
|
||||
* regcache.c (regcache::regcache): New function.
|
||||
|
@ -6539,7 +6539,7 @@ print_gp_register_row (struct ui_file *file, struct frame_info *frame,
|
||||
for (byte = 0;
|
||||
byte < (mips_abi_regsize (gdbarch)
|
||||
- register_size (gdbarch, regnum)); byte++)
|
||||
printf_filtered (" ");
|
||||
fprintf_filtered (file, " ");
|
||||
/* Now print the register value in hex, endian order. */
|
||||
if (gdbarch_byte_order (gdbarch) == BFD_ENDIAN_BIG)
|
||||
for (byte =
|
||||
|
Loading…
Reference in New Issue
Block a user