diff options
author | Mike Pall <mike> | 2011-11-25 19:36:35 +0100 |
---|---|---|
committer | Mike Pall <mike> | 2011-11-25 19:36:35 +0100 |
commit | c142b6c53eb8c9cb08ecc3a4db98cc1ff61b5989 (patch) | |
tree | c9f30473126af40cd41a7528ca35002898339a4a /src/lj_jit.h | |
parent | b3f16cb64d8eef247d3763eb90ece38810f29781 (diff) | |
download | luajit-c142b6c53eb8c9cb08ecc3a4db98cc1ff61b5989.tar.gz luajit-c142b6c53eb8c9cb08ecc3a4db98cc1ff61b5989.tar.bz2 luajit-c142b6c53eb8c9cb08ecc3a4db98cc1ff61b5989.zip |
FFI: Record C function calls with bool return values.
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 11dc9737..8a4c04c8 100644 --- a/src/lj_jit.h +++ b/src/lj_jit.h | |||
@@ -122,6 +122,7 @@ typedef enum { | |||
122 | LJ_POST_NONE, /* No action. */ | 122 | LJ_POST_NONE, /* No action. */ |
123 | LJ_POST_FIXCOMP, /* Fixup comparison and emit pending guard. */ | 123 | LJ_POST_FIXCOMP, /* Fixup comparison and emit pending guard. */ |
124 | LJ_POST_FIXGUARD, /* Fixup and emit pending guard. */ | 124 | LJ_POST_FIXGUARD, /* Fixup and emit pending guard. */ |
125 | LJ_POST_FIXGUARDSNAP, /* Fixup and emit pending guard and snapshot. */ | ||
125 | LJ_POST_FIXBOOL, /* Fixup boolean result. */ | 126 | LJ_POST_FIXBOOL, /* Fixup boolean result. */ |
126 | LJ_POST_FFRETRY /* Suppress recording of retried fast functions. */ | 127 | LJ_POST_FFRETRY /* Suppress recording of retried fast functions. */ |
127 | } PostProc; | 128 | } PostProc; |