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:
Martin Hunt 2002-10-11 17:50:10 +00:00
parent c85508ee3c
commit d5dc79609d
2 changed files with 8 additions and 0 deletions

View File

@ -1,3 +1,9 @@
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.
2002-10-11 Daniel Jacobowitz <drow@mvista.com>
* c-exp.y (THIS): Delete token and grammar rule.

View File

@ -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;
}