diff options
author | Mike Pall <mike> | 2018-01-29 12:47:08 +0100 |
---|---|---|
committer | Mike Pall <mike> | 2018-01-29 12:47:08 +0100 |
commit | b03a56f28ec360bbcf43091afd0607890a4a33c7 (patch) | |
tree | e8ca6face0a82f440512ad01067c17390fdf5ae8 /src/lj_carith.h | |
parent | c88602f080dcafea6ba222a2f7cc1ea0e41ef3cc (diff) | |
download | luajit-b03a56f28ec360bbcf43091afd0607890a4a33c7.tar.gz luajit-b03a56f28ec360bbcf43091afd0607890a4a33c7.tar.bz2 luajit-b03a56f28ec360bbcf43091afd0607890a4a33c7.zip |
FFI: Don't assert on #1LL (5.2 compatibility mode only).
Reported by Denis Golovan.
Diffstat (limited to '')
-rw-r--r-- | src/lj_carith.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lj_carith.h b/src/lj_carith.h index 3c155910..82fc8245 100644 --- a/src/lj_carith.h +++ b/src/lj_carith.h | |||
@@ -11,6 +11,7 @@ | |||
11 | #if LJ_HASFFI | 11 | #if LJ_HASFFI |
12 | 12 | ||
13 | LJ_FUNC int lj_carith_op(lua_State *L, MMS mm); | 13 | LJ_FUNC int lj_carith_op(lua_State *L, MMS mm); |
14 | LJ_FUNC int lj_carith_len(lua_State *L); | ||
14 | 15 | ||
15 | #if LJ_32 && LJ_HASJIT | 16 | #if LJ_32 && LJ_HASJIT |
16 | LJ_FUNC int64_t lj_carith_mul64(int64_t x, int64_t k); | 17 | LJ_FUNC int64_t lj_carith_mul64(int64_t x, int64_t k); |