vm.c: fix a half-baked implementation of `OP_SETIDX`; ref #5608

parent 5774a7a3
...@@ -1383,7 +1383,6 @@ RETRY_TRY_BLOCK: ...@@ -1383,7 +1383,6 @@ RETRY_TRY_BLOCK:
break; break;
default: default:
getidx_fallback: getidx_fallback:
c = 1;
mid = MRB_OPSYM(aref); mid = MRB_OPSYM(aref);
goto L_SEND_SYM; goto L_SEND_SYM;
} }
...@@ -1393,7 +1392,8 @@ RETRY_TRY_BLOCK: ...@@ -1393,7 +1392,8 @@ RETRY_TRY_BLOCK:
CASE(OP_SETIDX, B) { CASE(OP_SETIDX, B) {
c = 2; c = 2;
mid = MRB_OPSYM(aset); mid = MRB_OPSYM(aset);
goto L_SEND_SYM; SET_NIL_VALUE(regs[a+3]);
goto L_SENDB_SYM;
} }
CASE(OP_GETCONST, BB) { CASE(OP_GETCONST, BB) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment