* value.c (value_primitive_field): Copy the full 'location'
contents, instead of assuming that copying ADDRESS will bring over everything in the union. Remove obsolete comment.
This commit is contained in:
parent
f79b9530c6
commit
7d85ee0220
2 changed files with 7 additions and 3 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
2007-01-23 Vladimir Prus <vladimir@codesourcery.com>
|
||||||
|
|
||||||
|
* value.c (value_primitive_field): Copy the full 'location'
|
||||||
|
contents, instead of assuming that copying ADDRESS will
|
||||||
|
bring over everything in the union. Remove obsolete comment.
|
||||||
|
|
||||||
2007-01-23 Masaki Muranaka <monaka@monami-software.com>
|
2007-01-23 Masaki Muranaka <monaka@monami-software.com>
|
||||||
|
|
||||||
* m32c-tdep.c (make_regs, m32c_analyze_prologue)
|
* m32c-tdep.c (make_regs, m32c_analyze_prologue)
|
||||||
|
|
|
@ -1343,11 +1343,9 @@ value_primitive_field (struct value *arg1, int offset,
|
||||||
VALUE_LVAL (v) = VALUE_LVAL (arg1);
|
VALUE_LVAL (v) = VALUE_LVAL (arg1);
|
||||||
if (VALUE_LVAL (arg1) == lval_internalvar)
|
if (VALUE_LVAL (arg1) == lval_internalvar)
|
||||||
VALUE_LVAL (v) = lval_internalvar_component;
|
VALUE_LVAL (v) = lval_internalvar_component;
|
||||||
VALUE_ADDRESS (v) = VALUE_ADDRESS (arg1);
|
v->location = arg1->location;
|
||||||
VALUE_REGNUM (v) = VALUE_REGNUM (arg1);
|
VALUE_REGNUM (v) = VALUE_REGNUM (arg1);
|
||||||
VALUE_FRAME_ID (v) = VALUE_FRAME_ID (arg1);
|
VALUE_FRAME_ID (v) = VALUE_FRAME_ID (arg1);
|
||||||
/* VALUE_OFFSET (v) = VALUE_OFFSET (arg1) + offset
|
|
||||||
+ TYPE_FIELD_BITPOS (arg_type, fieldno) / 8; */
|
|
||||||
return v;
|
return v;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue