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 | 80616ffb0d2ee20706a712a10906c5549734f352 (patch) | |
tree | f695b85227c7723dbc26c403cd0b70e8d9c4e675 /gdb/symfile.c | |
parent | 48389c4808a5aa008b7fb14c848964b79012c14a (diff) | |
download | gdb-80616ffb0d2ee20706a712a10906c5549734f352.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/symfile.c')
-rw-r--r-- | gdb/symfile.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gdb/symfile.c b/gdb/symfile.c index 6e17978ebea..08ae12d0a6b 100644 --- a/gdb/symfile.c +++ b/gdb/symfile.c @@ -3080,13 +3080,13 @@ list_overlays_command (char *args, int from_tty) name = bfd_section_name (objfile->obfd, osect->the_bfd_section); printf_filtered ("Section %s, loaded at ", name); - print_address_numeric (lma, 1, gdb_stdout); + deprecated_print_address_numeric (lma, 1, gdb_stdout); puts_filtered (" - "); - print_address_numeric (lma + size, 1, gdb_stdout); + deprecated_print_address_numeric (lma + size, 1, gdb_stdout); printf_filtered (", mapped at "); - print_address_numeric (vma, 1, gdb_stdout); + deprecated_print_address_numeric (vma, 1, gdb_stdout); puts_filtered (" - "); - print_address_numeric (vma + size, 1, gdb_stdout); + deprecated_print_address_numeric (vma + size, 1, gdb_stdout); puts_filtered ("\n"); nmapped++; |