diff options
author | Markus Deuling <deuling@de.ibm.com> | 2008-01-11 13:34:15 +0000 |
---|---|---|
committer | Markus Deuling <deuling@de.ibm.com> | 2008-01-11 13:34:15 +0000 |
commit | ed49a04fe1bc299bc4b22c01a15c1f46ae21a294 (patch) | |
tree | 2aa63b9e2824bf8419d240f8dd2e7f6a370ee5df /gdb/printcmd.c | |
parent | 6093d2eb3a94fe7f15abaec2ad363cffd46aa8cd (diff) | |
download | gdb-ed49a04fe1bc299bc4b22c01a15c1f46ae21a294.zip gdb-ed49a04fe1bc299bc4b22c01a15c1f46ae21a294.tar.gz gdb-ed49a04fe1bc299bc4b22c01a15c1f46ae21a294.tar.bz2 |
* exec.c: #include "arch-utils.h"
(print_section_info): Use gdbarch_from_bfd to get at the
current architecture. Replace current_gdbarch. Fix indention.
Replace deprecated_print_address_numeric by paddress.
* Makefile.in (exec.o) Add dependency to arch-utils.h.
* valprint.c (val_print_string): Replace
deprecated_print_address_numeric.
* tracepoint.c (trace_mention, scope_info): Likewise.
* symmisc.c (dump_msymbols, dump_psymtab, dump_symtab_1, print_symbol)
(print_symbol, print_partial_symbols, maintenance_info_psymtabs)
(maintenance_check_symtabs): Likewise.
* symfile.c (list_overlays_command): Likewise.
* stack.c (frame_info, print_block_frame_labels): Likewise.
* printcmd.c (print_address, print_address_demangle)
(address_info): Likewise.
* corefile.c (memory_error): Likewise.
* infcmd.c (jump_command): Likewise.
* breakpoint.c (insert_bp_location, describe_other_breakpoints)
(mention, delete_breakpoint): Likewise.
* c-valprint.c (print_function_pointer_address, c_val_print): Likewise.
* dwarf2read.c (dump_die): Likewise.
* ada-valprint.c (ada_val_print_1): Likewise.
* f-valprint.c (f_val_print): Likewise.
* linux-fork.c (info_forks_command): Likewise.
* m32r-com.c (m32r_load_section, m32r_load)
(m32r_upload_command): Likewise.
* ui-out.c (ui_out_field_core_addr): Remove unnecessary comment.
Diffstat (limited to 'gdb/printcmd.c')
-rw-r--r-- | gdb/printcmd.c | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/gdb/printcmd.c b/gdb/printcmd.c index c631f5a..68c2a54 100644 --- a/gdb/printcmd.c +++ b/gdb/printcmd.c @@ -691,7 +691,7 @@ deprecated_print_address_numeric (CORE_ADDR addr, int use_local, void print_address (CORE_ADDR addr, struct ui_file *stream) { - deprecated_print_address_numeric (addr, 1, stream); + fputs_filtered (paddress (addr), stream); print_address_symbolic (addr, stream, asm_demangle, " "); } @@ -710,7 +710,7 @@ print_address_demangle (CORE_ADDR addr, struct ui_file *stream, } else if (addressprint) { - deprecated_print_address_numeric (addr, 1, stream); + fputs_filtered (paddress (addr), stream); print_address_symbolic (addr, stream, do_demangle, " "); } else @@ -1068,14 +1068,14 @@ address_info (char *exp, int from_tty) fprintf_symbol_filtered (gdb_stdout, exp, current_language->la_language, DMGL_ANSI); printf_filtered ("\" is at "); - deprecated_print_address_numeric (load_addr, 1, gdb_stdout); + fputs_filtered (paddress (load_addr), gdb_stdout); printf_filtered (" in a file compiled without debugging"); section = SYMBOL_BFD_SECTION (msymbol); if (section_is_overlay (section)) { load_addr = overlay_unmapped_address (load_addr, section); printf_filtered (",\n -- loaded at "); - deprecated_print_address_numeric (load_addr, 1, gdb_stdout); + fputs_filtered (paddress (load_addr), gdb_stdout); printf_filtered (" in overlay section %s", section->name); } printf_filtered (".\n"); @@ -1102,13 +1102,13 @@ address_info (char *exp, int from_tty) case LOC_LABEL: printf_filtered ("a label at address "); - deprecated_print_address_numeric (load_addr = SYMBOL_VALUE_ADDRESS (sym), - 1, gdb_stdout); + fputs_filtered (paddress (load_addr = SYMBOL_VALUE_ADDRESS (sym)), + gdb_stdout); if (section_is_overlay (section)) { load_addr = overlay_unmapped_address (load_addr, section); printf_filtered (",\n -- loaded at "); - deprecated_print_address_numeric (load_addr, 1, gdb_stdout); + fputs_filtered (paddress (load_addr), gdb_stdout); printf_filtered (" in overlay section %s", section->name); } break; @@ -1130,27 +1130,27 @@ address_info (char *exp, int from_tty) case LOC_STATIC: printf_filtered (_("static storage at address ")); - deprecated_print_address_numeric (load_addr = SYMBOL_VALUE_ADDRESS (sym), - 1, gdb_stdout); + fputs_filtered (paddress (load_addr = SYMBOL_VALUE_ADDRESS (sym)), + gdb_stdout); if (section_is_overlay (section)) { load_addr = overlay_unmapped_address (load_addr, section); printf_filtered (_(",\n -- loaded at ")); - deprecated_print_address_numeric (load_addr, 1, gdb_stdout); + fputs_filtered (paddress (load_addr), gdb_stdout); printf_filtered (_(" in overlay section %s"), section->name); } break; case LOC_INDIRECT: printf_filtered (_("external global (indirect addressing), at address *(")); - deprecated_print_address_numeric (load_addr = SYMBOL_VALUE_ADDRESS (sym), - 1, gdb_stdout); + fputs_filtered (paddress (load_addr = SYMBOL_VALUE_ADDRESS (sym)), + gdb_stdout); printf_filtered (")"); if (section_is_overlay (section)) { load_addr = overlay_unmapped_address (load_addr, section); printf_filtered (_(",\n -- loaded at ")); - deprecated_print_address_numeric (load_addr, 1, gdb_stdout); + fputs_filtered (paddress (load_addr), gdb_stdout); printf_filtered (_(" in overlay section %s"), section->name); } break; @@ -1198,12 +1198,12 @@ address_info (char *exp, int from_tty) case LOC_BLOCK: printf_filtered (_("a function at address ")); load_addr = BLOCK_START (SYMBOL_BLOCK_VALUE (sym)); - deprecated_print_address_numeric (load_addr, 1, gdb_stdout); + fputs_filtered (paddress (load_addr), gdb_stdout); if (section_is_overlay (section)) { load_addr = overlay_unmapped_address (load_addr, section); printf_filtered (_(",\n -- loaded at ")); - deprecated_print_address_numeric (load_addr, 1, gdb_stdout); + fputs_filtered (paddress (load_addr), gdb_stdout); printf_filtered (_(" in overlay section %s"), section->name); } break; @@ -1220,12 +1220,12 @@ address_info (char *exp, int from_tty) section = SYMBOL_BFD_SECTION (msym); printf_filtered (_("static storage at address ")); load_addr = SYMBOL_VALUE_ADDRESS (msym); - deprecated_print_address_numeric (load_addr, 1, gdb_stdout); + fputs_filtered (paddress (load_addr), gdb_stdout); if (section_is_overlay (section)) { load_addr = overlay_unmapped_address (load_addr, section); printf_filtered (_(",\n -- loaded at ")); - deprecated_print_address_numeric (load_addr, 1, gdb_stdout); + fputs_filtered (paddress (load_addr), gdb_stdout); printf_filtered (_(" in overlay section %s"), section->name); } } |