2005-02-07 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_LAZY): Delete (set_value_lazy): Declare. * value.c (set_value_lazy): Define. * valops.c, valarith.c, jv-valprint.c, jv-lang.c: Update. * gnu-v2-abi.c, findvar.c, dwarf2loc.c, ada-lang.c: Update.
This commit is contained in:
parent
303e4c21e7
commit
dfa52d88e7
11 changed files with 34 additions and 18 deletions
|
@ -420,7 +420,7 @@ value_from_contents_and_address (struct type *type,
|
|||
{
|
||||
struct value *v = allocate_value (type);
|
||||
if (valaddr == NULL)
|
||||
VALUE_LAZY (v) = 1;
|
||||
set_value_lazy (v, 1);
|
||||
else
|
||||
memcpy (value_contents_raw (v), valaddr, TYPE_LENGTH (type));
|
||||
VALUE_ADDRESS (v) = address;
|
||||
|
@ -453,7 +453,7 @@ coerce_unspec_val_to_type (struct value *val, struct type *type)
|
|||
VALUE_ADDRESS (result) = VALUE_ADDRESS (val) + value_offset (val);
|
||||
if (value_lazy (val)
|
||||
|| TYPE_LENGTH (type) > TYPE_LENGTH (value_type (val)))
|
||||
VALUE_LAZY (result) = 1;
|
||||
set_value_lazy (result, 1);
|
||||
else
|
||||
memcpy (value_contents_raw (result), value_contents (val),
|
||||
TYPE_LENGTH (type));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue