summaryrefslogtreecommitdiff
path: root/gdb/exec.c
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2005-02-14 14:37:38 +0000
committerAndrew Cagney <cagney@redhat.com>2005-02-14 14:37:38 +0000
commit80616ffb0d2ee20706a712a10906c5549734f352 (patch)
treef695b85227c7723dbc26c403cd0b70e8d9c4e675 /gdb/exec.c
parent48389c4808a5aa008b7fb14c848964b79012c14a (diff)
downloadgdb-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/exec.c')
-rw-r--r--gdb/exec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/exec.c b/gdb/exec.c
index 5556b9efacb..8f80825e558 100644
--- a/gdb/exec.c
+++ b/gdb/exec.c
@@ -531,7 +531,7 @@ print_section_info (struct target_ops *t, bfd *abfd)
if (abfd == exec_bfd)
{
printf_filtered (_("\tEntry point: "));
- print_address_numeric (bfd_get_start_address (abfd), 1, gdb_stdout);
+ deprecated_print_address_numeric (bfd_get_start_address (abfd), 1, gdb_stdout);
printf_filtered ("\n");
}
for (p = t->to_sections; p < t->to_sections_end; p++)