summaryrefslogtreecommitdiff
path: root/src/lj_jit.h
diff options
context:
space:
mode:
authorMike Pall <mike>2012-10-10 18:16:18 +0200
committerMike Pall <mike>2012-10-10 18:16:18 +0200
commit1c626112a06f1f69d3c22771c62d4ced1cfee356 (patch)
tree6045efeabcc77b7a0351a65161e1d456bb635752 /src/lj_jit.h
parent4a97faef7ef7e9b12235adcb98e3e591b0db7122 (diff)
downloadluajit-1c626112a06f1f69d3c22771c62d4ced1cfee356.tar.gz
luajit-1c626112a06f1f69d3c22771c62d4ced1cfee356.tar.bz2
luajit-1c626112a06f1f69d3c22771c62d4ced1cfee356.zip
FFI: Compile ffi.sizeof(), ffi.alignof() and ffi.offsetof().
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 43a99392..4549ac6c 100644
--- a/src/lj_jit.h
+++ b/src/lj_jit.h
@@ -144,6 +144,7 @@ typedef enum {
144 LJ_POST_FIXGUARD, /* Fixup and emit pending guard. */ 144 LJ_POST_FIXGUARD, /* Fixup and emit pending guard. */
145 LJ_POST_FIXGUARDSNAP, /* Fixup and emit pending guard and snapshot. */ 145 LJ_POST_FIXGUARDSNAP, /* Fixup and emit pending guard and snapshot. */
146 LJ_POST_FIXBOOL, /* Fixup boolean result. */ 146 LJ_POST_FIXBOOL, /* Fixup boolean result. */
147 LJ_POST_FIXCONST, /* Fixup constant results. */
147 LJ_POST_FFRETRY /* Suppress recording of retried fast functions. */ 148 LJ_POST_FFRETRY /* Suppress recording of retried fast functions. */
148} PostProc; 149} PostProc;
149 150