diff options
Diffstat (limited to 'src/lj_vm.h')
-rw-r--r-- | src/lj_vm.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lj_vm.h b/src/lj_vm.h index 5a82dab0..9ce14acc 100644 --- a/src/lj_vm.h +++ b/src/lj_vm.h | |||
@@ -88,6 +88,8 @@ LJ_ASMF void lj_cont_condt(void); /* Branch if result is true. */ | |||
88 | LJ_ASMF void lj_cont_condf(void); /* Branch if result is false. */ | 88 | LJ_ASMF void lj_cont_condf(void); /* Branch if result is false. */ |
89 | LJ_ASMF void lj_cont_hook(void); /* Continue from hook yield. */ | 89 | LJ_ASMF void lj_cont_hook(void); /* Continue from hook yield. */ |
90 | 90 | ||
91 | enum { LJ_CONT_TAILCALL, LJ_CONT_FFI_CALLBACK }; /* Special continuations. */ | ||
92 | |||
91 | /* Start of the ASM code. */ | 93 | /* Start of the ASM code. */ |
92 | LJ_ASMF char lj_vm_asm_begin[]; | 94 | LJ_ASMF char lj_vm_asm_begin[]; |
93 | 95 | ||