aboutsummaryrefslogtreecommitdiff
path: root/src/lj_jit.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lj_jit.h')
-rw-r--r--src/lj_jit.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lj_jit.h b/src/lj_jit.h
index 22f1d581..1cf63448 100644
--- a/src/lj_jit.h
+++ b/src/lj_jit.h
@@ -143,6 +143,7 @@ typedef uint32_t SnapEntry;
143#define SNAP_FRAME 0x010000 /* Frame slot. */ 143#define SNAP_FRAME 0x010000 /* Frame slot. */
144#define SNAP_CONT 0x020000 /* Continuation slot. */ 144#define SNAP_CONT 0x020000 /* Continuation slot. */
145#define SNAP_NORESTORE 0x040000 /* No need to restore slot. */ 145#define SNAP_NORESTORE 0x040000 /* No need to restore slot. */
146#define SNAP_SOFTFPNUM 0x080000 /* Soft-float number. */
146LJ_STATIC_ASSERT(SNAP_FRAME == TREF_FRAME); 147LJ_STATIC_ASSERT(SNAP_FRAME == TREF_FRAME);
147LJ_STATIC_ASSERT(SNAP_CONT == TREF_CONT); 148LJ_STATIC_ASSERT(SNAP_CONT == TREF_CONT);
148 149