summaryrefslogtreecommitdiff
path: root/src/lj_vm.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lj_vm.h')
-rw-r--r--src/lj_vm.h2
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. */
88LJ_ASMF void lj_cont_condf(void); /* Branch if result is false. */ 88LJ_ASMF void lj_cont_condf(void); /* Branch if result is false. */
89LJ_ASMF void lj_cont_hook(void); /* Continue from hook yield. */ 89LJ_ASMF void lj_cont_hook(void); /* Continue from hook yield. */
90 90
91enum { LJ_CONT_TAILCALL, LJ_CONT_FFI_CALLBACK }; /* Special continuations. */
92
91/* Start of the ASM code. */ 93/* Start of the ASM code. */
92LJ_ASMF char lj_vm_asm_begin[]; 94LJ_ASMF char lj_vm_asm_begin[];
93 95