fix confusion of GC_DEBUG and VM_DEBUG
This commit is contained in:
parent
6d8d7bb8bd
commit
40c996bd03
2
src/vm.c
2
src/vm.c
|
@ -683,7 +683,7 @@ pic_run(pic_state *pic, struct pic_proc *proc, pic_value args)
|
||||||
STOP:
|
STOP:
|
||||||
val = POP();
|
val = POP();
|
||||||
|
|
||||||
#if GC_DEBUG
|
#if VM_DEBUG
|
||||||
puts("**VM END STATE**");
|
puts("**VM END STATE**");
|
||||||
printf("stbase = %p\nsp = %p\n", pic->stbase, pic->sp);
|
printf("stbase = %p\nsp = %p\n", pic->stbase, pic->sp);
|
||||||
printf("cibase = %p\nci = %p\n", pic->cibase, pic->ci);
|
printf("cibase = %p\nci = %p\n", pic->cibase, pic->ci);
|
||||||
|
|
Loading…
Reference in New Issue