diff --git a/lang/bytecode.c b/lang/bytecode.c index f92ba1d..647a656 100644 --- a/lang/bytecode.c +++ b/lang/bytecode.c @@ -36,7 +36,6 @@ void bytecode_run(struct object **stack, int arg_count) { abort_if(!stack, "bytecode_run has no stack"); const unsigned char *pos_code = &bytecode[0]; - // We assume one argument: A return value struct object **pos_stack = stack + arg_count; unsigned char op = OP_RET; while ((op = *pos_code++) != OP_RET) {