* nto-tdep.h: Include osabi.h. Prototypes for generic Neutrino
[deliverable/binutils-gdb.git] / gdb / valarith.c
index ea93ea111117dcfc76b089d7f0e595e020d3a4e5..00f20e16c41e845ee7adf16235a22c35dc94402d 100644 (file)
@@ -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;
 }
This page took 0.023989 seconds and 4 git commands to generate.