* utils.c (host_pointer_to_address, address_to_host_pointer):

Use gdb_assert() instead of explicit call to internal_error().
This commit is contained in:
Kevin Buettner 2002-07-31 17:01:01 +00:00
parent 4eb6b71c65
commit c6caf09098
2 changed files with 8 additions and 6 deletions

View File

@ -1,3 +1,8 @@
2002-07-31 Kevin Buettner <kevinb@redhat.com>
* utils.c (host_pointer_to_address, address_to_host_pointer):
Use gdb_assert() instead of explicit call to internal_error().
2002-07-30 Kevin Buettner <kevinb@redhat.com>
* Makefile.in (rs6000-nat.o): Update dependencies.

View File

@ -2462,9 +2462,7 @@ phex_nz (ULONGEST l, int sizeof_l)
CORE_ADDR
host_pointer_to_address (void *ptr)
{
if (sizeof (ptr) != TYPE_LENGTH (builtin_type_void_data_ptr))
internal_error (__FILE__, __LINE__,
"host_pointer_to_address: bad cast");
gdb_assert (sizeof (ptr) == TYPE_LENGTH (builtin_type_void_data_ptr));
return POINTER_TO_ADDRESS (builtin_type_void_data_ptr, &ptr);
}
@ -2472,9 +2470,8 @@ void *
address_to_host_pointer (CORE_ADDR addr)
{
void *ptr;
if (sizeof (ptr) != TYPE_LENGTH (builtin_type_void_data_ptr))
internal_error (__FILE__, __LINE__,
"address_to_host_pointer: bad cast");
gdb_assert (sizeof (ptr) == TYPE_LENGTH (builtin_type_void_data_ptr));
ADDRESS_TO_POINTER (builtin_type_void_data_ptr, &ptr, addr);
return ptr;
}