* utils.c (host_pointer_to_address, address_to_host_pointer):
Change internal_error() message to indicate function responsible for the error.
This commit is contained in:
parent
9647fa4995
commit
790c9cf039
|
@ -1,3 +1,9 @@
|
||||||
|
2002-07-26 Kevin Buettner <kevinb@redhat.com>
|
||||||
|
|
||||||
|
* utils.c (host_pointer_to_address, address_to_host_pointer):
|
||||||
|
Change internal_error() message to indicate function responsible
|
||||||
|
for the error.
|
||||||
|
|
||||||
2002-07-26 Kevin Buettner <kevinb@redhat.com>
|
2002-07-26 Kevin Buettner <kevinb@redhat.com>
|
||||||
|
|
||||||
* ui-out.c (ui_out_field_core_addr): Remove unnecessary cast in
|
* ui-out.c (ui_out_field_core_addr): Remove unnecessary cast in
|
||||||
|
|
|
@ -2464,7 +2464,7 @@ host_pointer_to_address (void *ptr)
|
||||||
{
|
{
|
||||||
if (sizeof (ptr) != TYPE_LENGTH (builtin_type_void_data_ptr))
|
if (sizeof (ptr) != TYPE_LENGTH (builtin_type_void_data_ptr))
|
||||||
internal_error (__FILE__, __LINE__,
|
internal_error (__FILE__, __LINE__,
|
||||||
"core_addr_to_void_ptr: bad cast");
|
"host_pointer_to_address: bad cast");
|
||||||
return POINTER_TO_ADDRESS (builtin_type_void_data_ptr, &ptr);
|
return POINTER_TO_ADDRESS (builtin_type_void_data_ptr, &ptr);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2474,7 +2474,7 @@ address_to_host_pointer (CORE_ADDR addr)
|
||||||
void *ptr;
|
void *ptr;
|
||||||
if (sizeof (ptr) != TYPE_LENGTH (builtin_type_void_data_ptr))
|
if (sizeof (ptr) != TYPE_LENGTH (builtin_type_void_data_ptr))
|
||||||
internal_error (__FILE__, __LINE__,
|
internal_error (__FILE__, __LINE__,
|
||||||
"core_addr_to_void_ptr: bad cast");
|
"address_to_host_pointer: bad cast");
|
||||||
ADDRESS_TO_POINTER (builtin_type_void_data_ptr, &ptr, addr);
|
ADDRESS_TO_POINTER (builtin_type_void_data_ptr, &ptr, addr);
|
||||||
return ptr;
|
return ptr;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue