forked from Imagelibrary/binutils-gdb
* 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:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user