aboutsummaryrefslogtreecommitdiff
path: root/gdb/target.c
diff options
context:
space:
mode:
authorTom Tromey <tromey@adacore.com>2019-07-01 12:02:37 -0600
committerTom Tromey <tromey@adacore.com>2019-07-15 09:28:59 -0600
commitca8d69beb1024316af8dec571584437d613f40d2 (patch)
tree489c8f821a6055053b61c6c21e122b013c0b6f30 /gdb/target.c
parent3719fd55b6f89662653d50d33bb267c5f21127a5 (diff)
downloadbinutils-ca8d69beb1024316af8dec571584437d613f40d2.zip
binutils-ca8d69beb1024316af8dec571584437d613f40d2.tar.gz
binutils-ca8d69beb1024316af8dec571584437d613f40d2.tar.bz2
Use field_core_addr in more places
This changes a few spots that use field_fmt to use field_core_addr instead. gdb/ChangeLog 2019-07-15 Tom Tromey <tromey@adacore.com> * target.c (flash_erase_command): Use field_core_addr. * symfile.c (generic_load): Use field_core_addr. * sparc64-linux-tdep.c (sparc64_linux_handle_segmentation_fault): Use field_core_addr. * i386-linux-tdep.c (i386_linux_handle_segmentation_fault): Use field_core_addr.
Diffstat (limited to 'gdb/target.c')
-rw-r--r--gdb/target.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/target.c b/gdb/target.c
index de3706d..b3cfc53 100644
--- a/gdb/target.c
+++ b/gdb/target.c
@@ -3793,7 +3793,7 @@ flash_erase_command (const char *cmd, int from_tty)
ui_out_emit_tuple tuple_emitter (current_uiout, "erased-regions");
current_uiout->message (_("Erasing flash memory region at address "));
- current_uiout->field_fmt ("address", "%s", paddress (gdbarch, m.lo));
+ current_uiout->field_core_addr ("address", gdbarch, m.lo);
current_uiout->message (", size = ");
current_uiout->field_fmt ("size", "%s", hex_string (m.hi - m.lo));
current_uiout->message ("\n");