diff options
author | Mike Pall <mike> | 2011-02-05 18:54:08 +0100 |
---|---|---|
committer | Mike Pall <mike> | 2011-02-05 18:54:08 +0100 |
commit | bf05209e1446aa13416b3dfffe021c85057b9a5d (patch) | |
tree | 7082cc97aab24dd010617e6001bfa8ee2548c116 /src/lj_jit.h | |
parent | da3f256a52504ae6019875a80de1e0f7d1a19ebd (diff) | |
download | luajit-bf05209e1446aa13416b3dfffe021c85057b9a5d.tar.gz luajit-bf05209e1446aa13416b3dfffe021c85057b9a5d.tar.bz2 luajit-bf05209e1446aa13416b3dfffe021c85057b9a5d.zip |
FFI: Optimize snapshots for cdata comparisons.
Diffstat (limited to 'src/lj_jit.h')
-rw-r--r-- | src/lj_jit.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lj_jit.h b/src/lj_jit.h index 38970fc7..2f3df2a0 100644 --- a/src/lj_jit.h +++ b/src/lj_jit.h | |||
@@ -111,6 +111,7 @@ typedef enum { | |||
111 | /* Post-processing action. */ | 111 | /* Post-processing action. */ |
112 | typedef enum { | 112 | typedef enum { |
113 | LJ_POST_NONE, /* No action. */ | 113 | LJ_POST_NONE, /* No action. */ |
114 | LJ_POST_FIXCOMP, /* Fixup comparison and emit pending guard. */ | ||
114 | LJ_POST_FIXGUARD /* Fixup and emit pending guard. */ | 115 | LJ_POST_FIXGUARD /* Fixup and emit pending guard. */ |
115 | } PostProc; | 116 | } PostProc; |
116 | 117 | ||