summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--vm_insnhelper.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/vm_insnhelper.c b/vm_insnhelper.c
index 398bbd741e..ea25de629f 100644
--- a/vm_insnhelper.c
+++ b/vm_insnhelper.c
@@ -1237,6 +1237,17 @@ vm_setivar(VALUE obj, ID id, VALUE val, const rb_iseq_t *iseq, IVC ic, const str
else {
vm_cc_attr_index_set(cc, (int)(ent->index + 1));
}
+
+ index = ent->index;
+
+ VALUE *ptr = ROBJECT_IVPTR(obj);
+ if (index >= ROBJECT_NUMIV(obj)) {
+ rb_init_iv_list(obj, ROBJECT_NUMIV(obj), (uint32_t)iv_index_tbl->num_entries, iv_index_tbl);
+ ptr = ROBJECT_IVPTR(obj);
+ }
+ RB_OBJ_WRITE(obj, &ptr[index], val);
+
+ return val;
}
/* fall through */
}