mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-29 04:53:56 +08:00
2003-03-08 Andrew Cagney <cagney@redhat.com>
* valarith.c (value_subscripted_rvalue): Copy the array's REGNO to the result.
This commit is contained in:
parent
d55b850c07
commit
f49bacc80c
@ -1,3 +1,8 @@
|
||||
2003-03-08 Andrew Cagney <cagney@redhat.com>
|
||||
|
||||
* valarith.c (value_subscripted_rvalue): Copy the array's REGNO to
|
||||
the result.
|
||||
|
||||
2003-03-07 Andrew Cagney <cagney@redhat.com>
|
||||
|
||||
* gdbarch.sh: Don't generate two macro definitions when an
|
||||
|
@ -276,6 +276,7 @@ value_subscripted_rvalue (struct value *array, struct value *idx, int lowerbound
|
||||
else
|
||||
VALUE_LVAL (v) = VALUE_LVAL (array);
|
||||
VALUE_ADDRESS (v) = VALUE_ADDRESS (array);
|
||||
VALUE_REGNO (v) = VALUE_REGNO (array);
|
||||
VALUE_OFFSET (v) = VALUE_OFFSET (array) + elt_offs;
|
||||
return v;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user