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.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/lj_vm.h b/src/lj_vm.h
index cf6a985f..b25f182a 100644
--- a/src/lj_vm.h
+++ b/src/lj_vm.h
@@ -61,9 +61,7 @@ LJ_ASMF void lj_cont_hook(void); /* Continue from hook yield. */
61/* Start of the ASM code. */ 61/* Start of the ASM code. */
62LJ_ASMF char lj_vm_asm_begin[]; 62LJ_ASMF char lj_vm_asm_begin[];
63 63
64/* Opcode handler offsets, relative to lj_vm_asm_begin. */ 64/* Bytecode offsets are relative to lj_vm_asm_begin. */
65LJ_ASMF const uint16_t lj_vm_op_ofs[];
66
67#define makeasmfunc(ofs) ((ASMFunction)(lj_vm_asm_begin + (ofs))) 65#define makeasmfunc(ofs) ((ASMFunction)(lj_vm_asm_begin + (ofs)))
68 66
69#endif 67#endif