* annotate.c (annotate_source, annotate_frame_begin): Replace

deprecated_print_address_numeric with paddress.
	* cli/cli-cmds.c (list_command, edit_command): Likewise.
	* tui/tui-stack.c (tui_make_status_line): Likewise.

	* defs.h (deprecated_print_address_numeric): Remove.
	* printcmd.c (deprecated_print_address_numeric): Remove.
	* maint.c (maint_print_section_info): Fix comment.
This commit is contained in:
Markus Deuling
2008-05-23 04:31:40 +00:00
parent d44e847372
commit 50ee753532
7 changed files with 27 additions and 55 deletions

View File

@@ -668,18 +668,12 @@ edit_command (char *arg, int from_tty)
hex_string ((unsigned long) sal.pc));
sym = find_pc_function (sal.pc);
if (sym)
{
deprecated_print_address_numeric (sal.pc, 1, gdb_stdout);
printf_filtered (" is in ");
fputs_filtered (SYMBOL_PRINT_NAME (sym), gdb_stdout);
printf_filtered (" (%s:%d).\n", sal.symtab->filename, sal.line);
}
printf_filtered ("%s is in %s (%s:%d).\n", paddress (sal.pc),
SYMBOL_PRINT_NAME (sym), sal.symtab->filename,
sal.line);
else
{
deprecated_print_address_numeric (sal.pc, 1, gdb_stdout);
printf_filtered (" is at %s:%d.\n",
sal.symtab->filename, sal.line);
}
printf_filtered ("%s is at %s:%d.\n", paddress (sal.pc),
sal.symtab->filename, sal.line);
}
/* If what was given does not imply a symtab, it must be an undebuggable
@@ -838,18 +832,12 @@ list_command (char *arg, int from_tty)
hex_string ((unsigned long) sal.pc));
sym = find_pc_function (sal.pc);
if (sym)
{
deprecated_print_address_numeric (sal.pc, 1, gdb_stdout);
printf_filtered (" is in ");
fputs_filtered (SYMBOL_PRINT_NAME (sym), gdb_stdout);
printf_filtered (" (%s:%d).\n", sal.symtab->filename, sal.line);
}
printf_filtered ("%s is in %s (%s:%d).\n",
paddress (sal.pc), SYMBOL_PRINT_NAME (sym),
sal.symtab->filename, sal.line);
else
{
deprecated_print_address_numeric (sal.pc, 1, gdb_stdout);
printf_filtered (" is at %s:%d.\n",
sal.symtab->filename, sal.line);
}
printf_filtered ("%s is at %s:%d.\n", paddress (sal.pc),
sal.symtab->filename, sal.line);
}
/* If line was not specified by just a line number,