1
0
Fork 0
forked from fun/fun

Some more refactoring.

This commit is contained in:
Johannes Findeisen 2025-09-15 09:01:46 +02:00
commit 108be8c41e
11 changed files with 10 additions and 10 deletions

View file

@ -1,10 +0,0 @@
case OP_LOAD_CONST: {
int idx = inst.operand;
if (idx < 0 || idx >= f->fn->const_count) {
fprintf(stderr, "Runtime error: constant index out of range\n");
exit(1);
}
Value c = copy_value(&f->fn->constants[idx]);
push_value(vm, c);
break;
}