fix a bug introded in prev prev commit
This commit is contained in:
parent
1e4ff3276a
commit
abd5bc9216
2
src/vm.c
2
src/vm.c
|
@ -217,7 +217,7 @@ pic_apply(pic_state *pic, struct pic_proc *proc, pic_value argv)
|
||||||
boot[0].insn = OP_CALL;
|
boot[0].insn = OP_CALL;
|
||||||
boot[0].u.i = argc;
|
boot[0].u.i = argc;
|
||||||
boot[1].insn = OP_STOP;
|
boot[1].insn = OP_STOP;
|
||||||
pc = &boot;
|
pc = boot;
|
||||||
goto L_CALL;
|
goto L_CALL;
|
||||||
|
|
||||||
VM_LOOP {
|
VM_LOOP {
|
||||||
|
|
Loading…
Reference in New Issue