* hppa-tdep.c (hppa_pointer_to_address_hack): Remove function.

(unwind_command): Use %lx to print pointer.
This commit is contained in:
Mark Kettenis 2005-06-19 21:25:47 +00:00
parent 8d7337bf3d
commit 99d64d771c
2 changed files with 6 additions and 12 deletions

View file

@ -1,3 +1,8 @@
2005-06-12 Mark Kettenis <kettenis@gnu.org>
* hppa-tdep.c (hppa_pointer_to_address_hack): Remove function.
(unwind_command): Use %lx to print pointer.
2005-06-19 Mark Kettenis <kettenis@gnu.org>
* remote-sim.c (gdbsim_xfer_inferior_memory): Remove prototype.

View file

@ -2395,16 +2395,6 @@ hppa_lookup_stub_minimal_symbol (const char *name,
return NULL;
}
/* Instead of this nasty cast, add a method pvoid() that prints out a
host VOID data type (remember %p isn't portable). */
static CORE_ADDR
hppa_pointer_to_address_hack (void *ptr)
{
gdb_assert (sizeof (ptr) == TYPE_LENGTH (builtin_type_void_data_ptr));
return POINTER_TO_ADDRESS (builtin_type_void_data_ptr, &ptr);
}
static void
unwind_command (char *exp, int from_tty)
{
@ -2426,8 +2416,7 @@ unwind_command (char *exp, int from_tty)
return;
}
printf_unfiltered ("unwind_table_entry (0x%s):\n",
paddr_nz (hppa_pointer_to_address_hack (u)));
printf_unfiltered ("unwind_table_entry (0x%lx):\n", (unsigned long)u);
printf_unfiltered ("\tregion_start = ");
print_address (u->region_start, gdb_stdout);