diff options
author | Andrew Cagney <cagney@redhat.com> | 2005-02-14 14:37:38 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2005-02-14 14:37:38 +0000 |
commit | 66bf4b3a03e67c9c38fb7525c6ce25c4f870206a (patch) | |
tree | 9de77d59e9da5809b17deadcd753de54454d3100 /gdb/m32r-rom.c | |
parent | 8adce22da6e4805b565e6519d112e93f2a09814c (diff) | |
download | binutils-gdb-66bf4b3a03e67c9c38fb7525c6ce25c4f870206a.tar.gz |
2005-02-14 Andrew Cagney <cagney@gnu.org>
* utils.c (paddress): New function.
* defs.h (paddress): Declare.
* printcmd.c (deprecated_print_address_numeric): Rename
print_address_numeric, call paddress.
* valprint.c, ui-out.c, tui/tui-stack.c, tracepoint.c: Update.
* symmisc.c, symfile.c stack.c, p-valprint.c, printcmd.c: Update.
* maint.c, m32r-rom.c, infcmd.c, f-valprint.c, exec.c: Update.
* dwarf2read.c, dve3900-rom.c, defs.h, c-valprint.c: Update.
* corefile.c, cli/cli-cmds.c, breakpoint.c, annotate.c: Update.
* ada-valprint.c: Update.
Diffstat (limited to 'gdb/m32r-rom.c')
-rw-r--r-- | gdb/m32r-rom.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/m32r-rom.c b/gdb/m32r-rom.c index 846233ce1e6..f4538fe0f35 100644 --- a/gdb/m32r-rom.c +++ b/gdb/m32r-rom.c @@ -83,7 +83,7 @@ m32r_load_section (bfd *abfd, asection *s, void *obj) printf_filtered ("Loading section %s, size 0x%lx lma ", bfd_section_name (abfd, s), section_size); - print_address_numeric (section_base, 1, gdb_stdout); + deprecated_print_address_numeric (section_base, 1, gdb_stdout); printf_filtered ("\n"); gdb_flush (gdb_stdout); monitor_printf ("%s mw\r", paddr_nz (section_base)); @@ -142,7 +142,7 @@ m32r_load (char *filename, int from_tty) printf_filtered ("Loading section %s, size 0x%lx vma ", bfd_section_name (abfd, s), section_size); - print_address_numeric (section_base, 1, gdb_stdout); + deprecated_print_address_numeric (section_base, 1, gdb_stdout); printf_filtered ("\n"); gdb_flush (gdb_stdout); monitor_printf ("%x mw\r", section_base); @@ -510,7 +510,7 @@ m32r_upload_command (char *args, int from_tty) printf_filtered ("Loading section %s, size 0x%lx lma ", bfd_section_name (abfd, s), section_size); - print_address_numeric (section_base, 1, gdb_stdout); + deprecated_print_address_numeric (section_base, 1, gdb_stdout); printf_filtered ("\n"); gdb_flush (gdb_stdout); } |