2002-10-11 Martin M. Hunt <hunt@redhat.com>
* utils.c (string_to_core_addr): After turning string into a number, convert to a CORE_ADDR using INTEGER_TO_ADDRESS which will do necessary sign-extension, etc.
This commit is contained in:
parent
c85508ee3c
commit
d5dc79609d
2 changed files with 8 additions and 0 deletions
|
@ -2649,6 +2649,8 @@ string_to_core_addr (const char *my_string)
|
|||
internal_error (__FILE__, __LINE__, "invalid decimal");
|
||||
}
|
||||
}
|
||||
if (INTEGER_TO_ADDRESS_P ())
|
||||
addr = INTEGER_TO_ADDRESS (builtin_type_void_data_ptr, &addr);
|
||||
return addr;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue