diff options
author | Mike Pall <mike> | 2011-03-07 20:03:38 +0100 |
---|---|---|
committer | Mike Pall <mike> | 2011-03-07 20:03:38 +0100 |
commit | 8eb09fe820fe8621e5e9684757ec21c633cf557a (patch) | |
tree | afa9ed4de4131503defe96f122b9717ff8fca2cc /src/lj_jit.h | |
parent | f29a9d4341c64fa47c735bdf6ae1f379b6b6464c (diff) | |
download | luajit-8eb09fe820fe8621e5e9684757ec21c633cf557a.tar.gz luajit-8eb09fe820fe8621e5e9684757ec21c633cf557a.tar.bz2 luajit-8eb09fe820fe8621e5e9684757ec21c633cf557a.zip |
Suppress recording of retried fast functions.
Diffstat (limited to 'src/lj_jit.h')
-rw-r--r-- | src/lj_jit.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lj_jit.h b/src/lj_jit.h index e2dd5fb8..92631440 100644 --- a/src/lj_jit.h +++ b/src/lj_jit.h | |||
@@ -113,7 +113,8 @@ 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_FIXCOMP, /* Fixup comparison and emit pending guard. */ |
115 | LJ_POST_FIXGUARD, /* Fixup and emit pending guard. */ | 115 | LJ_POST_FIXGUARD, /* Fixup and emit pending guard. */ |
116 | LJ_POST_FIXBOOL /* Fixup boolean result. */ | 116 | LJ_POST_FIXBOOL, /* Fixup boolean result. */ |
117 | LJ_POST_FFRETRY /* Suppress recording of retried fast functions. */ | ||
117 | } PostProc; | 118 | } PostProc; |
118 | 119 | ||
119 | /* Machine code type. */ | 120 | /* Machine code type. */ |