mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2025-02-13 13:35:56 +00:00
* 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:
parent
4eb6b71c65
commit
c6caf09098
@ -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.
|
||||
|
@ -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;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user