diff options
Diffstat (limited to 'gdb/solib-frv.c')
-rw-r--r-- | gdb/solib-frv.c | 25 |
1 files changed, 12 insertions, 13 deletions
diff --git a/gdb/solib-frv.c b/gdb/solib-frv.c index efdfc86..cd3fc8d 100644 --- a/gdb/solib-frv.c +++ b/gdb/solib-frv.c @@ -375,7 +375,7 @@ lm_base (void) if (solib_frv_debug) fprintf_unfiltered (gdb_stdlog, "lm_base: _GLOBAL_OFFSET_TABLE_ + 8 = %s\n", - local_hex_string_custom (addr, "08l")); + hex_string_custom (addr, 8)); if (target_read_memory (addr, buf, sizeof buf) != 0) return 0; @@ -384,7 +384,7 @@ lm_base (void) if (solib_frv_debug) fprintf_unfiltered (gdb_stdlog, "lm_base: lm_base_cache = %s\n", - local_hex_string_custom (lm_base_cache, "08l")); + hex_string_custom (lm_base_cache, 8)); return lm_base_cache; } @@ -431,7 +431,7 @@ frv_current_sos (void) if (solib_frv_debug) fprintf_unfiltered (gdb_stdlog, "current_sos: reading link_map entry at %s\n", - local_hex_string_custom (lm_addr, "08l")); + hex_string_custom (lm_addr, 8)); if (target_read_memory (lm_addr, (char *) &lm_buf, sizeof (lm_buf)) != 0) { @@ -670,14 +670,13 @@ enable_break2 (void) if (solib_frv_debug) fprintf_unfiltered (gdb_stdlog, "enable_break: interp_loadmap_addr = %s\n", - local_hex_string_custom (interp_loadmap_addr, - "08l")); + hex_string_custom (interp_loadmap_addr, 8)); ldm = fetch_loadmap (interp_loadmap_addr); if (ldm == NULL) { warning ("Unable to load dynamic linker loadmap at address %s\n", - local_hex_string_custom (interp_loadmap_addr, "08l")); + hex_string_custom (interp_loadmap_addr, 8)); enable_break_failure_warning (); bfd_close (tmp_bfd); return 0; @@ -718,20 +717,20 @@ enable_break2 (void) if (solib_frv_debug) fprintf_unfiltered (gdb_stdlog, "enable_break: _dl_debug_addr (prior to relocation) = %s\n", - local_hex_string_custom (addr, "08l")); + hex_string_custom (addr, 8)); addr += displacement_from_map (ldm, addr); if (solib_frv_debug) fprintf_unfiltered (gdb_stdlog, "enable_break: _dl_debug_addr (after relocation) = %s\n", - local_hex_string_custom (addr, "08l")); + hex_string_custom (addr, 8)); /* Fetch the address of the r_debug struct. */ if (target_read_memory (addr, addr_buf, sizeof addr_buf) != 0) { warning ("Unable to fetch contents of _dl_debug_addr (at address %s) from dynamic linker", - local_hex_string_custom (addr, "08l")); + hex_string_custom (addr, 8)); } addr = extract_unsigned_integer (addr_buf, sizeof addr_buf); @@ -740,7 +739,7 @@ enable_break2 (void) if (target_read_memory (addr + 8, addr_buf, sizeof addr_buf) != 0) { warning ("Unable to fetch _dl_debug_addr->r_brk (at address %s) from dynamic linker", - local_hex_string_custom (addr + 8, "08l")); + hex_string_custom (addr + 8, 8)); enable_break_failure_warning (); bfd_close (tmp_bfd); return 0; @@ -751,7 +750,7 @@ enable_break2 (void) if (target_read_memory (addr, addr_buf, sizeof addr_buf) != 0) { warning ("Unable to fetch _dl_debug_addr->.r_brk entry point (at address %s) from dynamic linker", - local_hex_string_custom (addr, "08l")); + hex_string_custom (addr, 8)); enable_break_failure_warning (); bfd_close (tmp_bfd); return 0; @@ -799,8 +798,8 @@ enable_break (void) if (solib_frv_debug) fprintf_unfiltered (gdb_stdlog, "enable_break: solib event breakpoint placed at entry point: %s\n", - local_hex_string_custom - (symfile_objfile->ei.entry_point, "08l")); + hex_string_custom + (symfile_objfile->ei.entry_point, 8)); } else { |