aboutsummaryrefslogtreecommitdiff
path: root/src/lj_vm.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lj_vm.h')
-rw-r--r--src/lj_vm.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lj_vm.h b/src/lj_vm.h
index 5893d0b2..4a1c2f2d 100644
--- a/src/lj_vm.h
+++ b/src/lj_vm.h
@@ -107,6 +107,7 @@ LJ_ASMF void lj_cont_nop(void); /* Do nothing, just continue execution. */
107LJ_ASMF void lj_cont_condt(void); /* Branch if result is true. */ 107LJ_ASMF void lj_cont_condt(void); /* Branch if result is true. */
108LJ_ASMF void lj_cont_condf(void); /* Branch if result is false. */ 108LJ_ASMF void lj_cont_condf(void); /* Branch if result is false. */
109LJ_ASMF void lj_cont_hook(void); /* Continue from hook yield. */ 109LJ_ASMF void lj_cont_hook(void); /* Continue from hook yield. */
110LJ_ASMF void lj_cont_stitch(void); /* Trace stitching. */
110 111
111enum { LJ_CONT_TAILCALL, LJ_CONT_FFI_CALLBACK }; /* Special continuations. */ 112enum { LJ_CONT_TAILCALL, LJ_CONT_FFI_CALLBACK }; /* Special continuations. */
112 113