summaryrefslogtreecommitdiff
path: root/gdb/valarith.c
diff options
context:
space:
mode:
authorDaniel Jacobowitz <dan@debian.org>2004-11-21 19:52:13 +0000
committerDaniel Jacobowitz <dan@debian.org>2004-11-21 19:52:13 +0000
commite0acf0fdb4e50f6ac50a852de684ba198426f4f5 (patch)
treed8884312271fbc8648eb8c1a39972b0bb85c862d /gdb/valarith.c
parenteda87aac32f24d39d7009a55ee2d0ac5a6569c6f (diff)
downloadgdb-e0acf0fdb4e50f6ac50a852de684ba198426f4f5.tar.gz
* valarith.c (value_subscript): Copy VALUE_FRAME_ID.
(value_subscripted_rvalue): Likewise. * valops.c (search_struct_field, value_slice): Likewise.
Diffstat (limited to 'gdb/valarith.c')
-rw-r--r--gdb/valarith.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/gdb/valarith.c b/gdb/valarith.c
index ea93ea11111..00f20e16c41 100644
--- a/gdb/valarith.c
+++ b/gdb/valarith.c
@@ -239,6 +239,7 @@ value_subscript (struct value *array, struct value *idx)
if (VALUE_LVAL (array) == lval_internalvar)
VALUE_LVAL (v) = lval_internalvar_component;
VALUE_ADDRESS (v) = VALUE_ADDRESS (array);
+ VALUE_FRAME_ID (v) = VALUE_FRAME_ID (array);
v->offset = offset + value_offset (array);
return v;
}
@@ -278,6 +279,7 @@ value_subscripted_rvalue (struct value *array, struct value *idx, int lowerbound
VALUE_LVAL (v) = VALUE_LVAL (array);
VALUE_ADDRESS (v) = VALUE_ADDRESS (array);
VALUE_REGNUM (v) = VALUE_REGNUM (array);
+ VALUE_FRAME_ID (v) = VALUE_FRAME_ID (array);
v->offset = value_offset (array) + elt_offs;
return v;
}