diff options
author | Mike Pall <mike> | 2011-01-13 02:35:29 +0100 |
---|---|---|
committer | Mike Pall <mike> | 2011-01-13 02:35:29 +0100 |
commit | 0ec7f5ed92b6b9720c80669b2de3aa3c40967153 (patch) | |
tree | d4ea028d9db343d77985df658b4370b838050523 /src/lj_meta.h | |
parent | e7b08b2361dd9e3f945dfd4b7e34c4aad2243582 (diff) | |
download | luajit-0ec7f5ed92b6b9720c80669b2de3aa3c40967153.tar.gz luajit-0ec7f5ed92b6b9720c80669b2de3aa3c40967153.tar.bz2 luajit-0ec7f5ed92b6b9720c80669b2de3aa3c40967153.zip |
FFI: Add 64 bit integer comparisons and pointer comparisons.
Diffstat (limited to 'src/lj_meta.h')
-rw-r--r-- | src/lj_meta.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lj_meta.h b/src/lj_meta.h index 3854c8a0..687e6c08 100644 --- a/src/lj_meta.h +++ b/src/lj_meta.h | |||
@@ -26,6 +26,7 @@ LJ_FUNCA TValue *lj_meta_arith(lua_State *L, TValue *ra, cTValue *rb, | |||
26 | LJ_FUNCA TValue *lj_meta_cat(lua_State *L, TValue *top, int left); | 26 | LJ_FUNCA TValue *lj_meta_cat(lua_State *L, TValue *top, int left); |
27 | LJ_FUNCA TValue * LJ_FASTCALL lj_meta_len(lua_State *L, cTValue *o); | 27 | LJ_FUNCA TValue * LJ_FASTCALL lj_meta_len(lua_State *L, cTValue *o); |
28 | LJ_FUNCA TValue *lj_meta_equal(lua_State *L, GCobj *o1, GCobj *o2, int ne); | 28 | LJ_FUNCA TValue *lj_meta_equal(lua_State *L, GCobj *o1, GCobj *o2, int ne); |
29 | LJ_FUNCA TValue * LJ_FASTCALL lj_meta_equal_cd(lua_State *L, BCIns ins); | ||
29 | LJ_FUNCA TValue *lj_meta_comp(lua_State *L, cTValue *o1, cTValue *o2, int op); | 30 | LJ_FUNCA TValue *lj_meta_comp(lua_State *L, cTValue *o1, cTValue *o2, int op); |
30 | LJ_FUNCA void lj_meta_call(lua_State *L, TValue *func, TValue *top); | 31 | LJ_FUNCA void lj_meta_call(lua_State *L, TValue *func, TValue *top); |
31 | LJ_FUNCA void LJ_FASTCALL lj_meta_for(lua_State *L, TValue *base); | 32 | LJ_FUNCA void LJ_FASTCALL lj_meta_for(lua_State *L, TValue *base); |