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 | 66bf4b3a03e67c9c38fb7525c6ce25c4f870206a (patch) | |
tree | 9de77d59e9da5809b17deadcd753de54454d3100 /gdb/breakpoint.c | |
parent | 8adce22da6e4805b565e6519d112e93f2a09814c (diff) | |
download | gdb-66bf4b3a03e67c9c38fb7525c6ce25c4f870206a.zip gdb-66bf4b3a03e67c9c38fb7525c6ce25c4f870206a.tar.gz gdb-66bf4b3a03e67c9c38fb7525c6ce25c4f870206a.tar.bz2 |
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/breakpoint.c')
-rw-r--r-- | gdb/breakpoint.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gdb/breakpoint.c b/gdb/breakpoint.c index 68f911d..ca85d51 100644 --- a/gdb/breakpoint.c +++ b/gdb/breakpoint.c @@ -872,7 +872,7 @@ insert_bp_location (struct bp_location *bpt, bpt->owner->number); fprintf_filtered (tmp_error_stream, "Error accessing memory address "); - print_address_numeric (bpt->address, 1, tmp_error_stream); + deprecated_print_address_numeric (bpt->address, 1, tmp_error_stream); fprintf_filtered (tmp_error_stream, ": %s.\n", safe_strerror (val)); } @@ -1028,7 +1028,7 @@ in which its expression is valid.\n"), bpt->owner->number); fprintf_filtered (tmp_error_stream, "Error accessing memory address "); - print_address_numeric (bpt->address, 1, tmp_error_stream); + deprecated_print_address_numeric (bpt->address, 1, tmp_error_stream); fprintf_filtered (tmp_error_stream, ": %s.\n", safe_strerror (val)); bpt->owner->enable_state = bp_disabled; @@ -3769,7 +3769,7 @@ describe_other_breakpoints (CORE_ADDR pc, asection *section) : ((others == 1) ? " and" : "")); } printf_filtered (_("also set at pc ")); - print_address_numeric (pc, 1, gdb_stdout); + deprecated_print_address_numeric (pc, 1, gdb_stdout); printf_filtered (".\n"); } } @@ -4854,7 +4854,7 @@ mention (struct breakpoint *b) if (addressprint || b->source_file == NULL) { printf_filtered (" at "); - print_address_numeric (b->loc->address, 1, gdb_stdout); + deprecated_print_address_numeric (b->loc->address, 1, gdb_stdout); } if (b->source_file) printf_filtered (": file %s, line %d.", @@ -6822,7 +6822,7 @@ delete_breakpoint (struct breakpoint *bpt) { fprintf_unfiltered (tmp_error_stream, "Cannot insert breakpoint %d.\n", b->number); fprintf_filtered (tmp_error_stream, "Error accessing memory address "); - print_address_numeric (b->loc->address, 1, tmp_error_stream); + deprecated_print_address_numeric (b->loc->address, 1, tmp_error_stream); fprintf_filtered (tmp_error_stream, ": %s.\n", safe_strerror (val)); } |