diff options
author | Markus Deuling <deuling@de.ibm.com> | 2008-05-23 04:31:40 +0000 |
---|---|---|
committer | Markus Deuling <deuling@de.ibm.com> | 2008-05-23 04:31:40 +0000 |
commit | 50ee75353252ec07aa1f062a2b409a2f6eb0d48d (patch) | |
tree | 057e55d93271c95eb756cb7967b455aafd14156b /gdb/defs.h | |
parent | d44e847372bc71608d46402a65034c8d40ba2e80 (diff) | |
download | gdb-50ee75353252ec07aa1f062a2b409a2f6eb0d48d.zip gdb-50ee75353252ec07aa1f062a2b409a2f6eb0d48d.tar.gz gdb-50ee75353252ec07aa1f062a2b409a2f6eb0d48d.tar.bz2 |
* 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.
Diffstat (limited to 'gdb/defs.h')
-rw-r--r-- | gdb/defs.h | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -479,7 +479,7 @@ extern char *paddr_nz (CORE_ADDR addr); extern char *paddr_u (CORE_ADDR addr); extern char *paddr_d (LONGEST addr); -/* Like 0x%lx, replaces deprecated_print_address_numeric. */ +/* Like 0x%lx. */ extern const char *paddress (CORE_ADDR addr); extern char *phex (ULONGEST l, int sizeof_l); @@ -565,8 +565,6 @@ extern int build_address_symbolic (CORE_ADDR addr, int *line, int *unmapped); -extern void deprecated_print_address_numeric (CORE_ADDR, int, struct ui_file *); - extern void print_address (CORE_ADDR, struct ui_file *); /* From source.c */ |