Some more refactoring.
This commit is contained in:
parent
0e7fffcfe0
commit
108be8c41e
11 changed files with 10 additions and 10 deletions
|
|
@ -1,12 +0,0 @@
|
|||
case OP_STORE_LOCAL: {
|
||||
int slot = inst.operand;
|
||||
if (slot < 0 || slot >= FRAME_MAX_LOCALS) {
|
||||
fprintf(stderr, "Runtime error: local slot out of range\n");
|
||||
exit(1);
|
||||
}
|
||||
Value v = pop_value(vm);
|
||||
/* free previous local then move v into it */
|
||||
free_value(f->locals[slot]);
|
||||
f->locals[slot] = v;
|
||||
break;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue