diff options
author | Mike Pall <mike> | 2011-01-28 02:15:30 +0100 |
---|---|---|
committer | Mike Pall <mike> | 2011-01-28 02:15:30 +0100 |
commit | 07d8a53b393b5fbb52f3920f913ab21ce6dde4fa (patch) | |
tree | 0542c4e32ccbad394ba433c06d01df2aaed279e5 /src/lj_carith.h | |
parent | cd9b8f90e2241c3f6c540844eedc04bc6bc28faf (diff) | |
download | luajit-07d8a53b393b5fbb52f3920f913ab21ce6dde4fa.tar.gz luajit-07d8a53b393b5fbb52f3920f913ab21ce6dde4fa.tar.bz2 luajit-07d8a53b393b5fbb52f3920f913ab21ce6dde4fa.zip |
FFI: Split up 64 bit x^k helper into signed/unsigned.
Diffstat (limited to 'src/lj_carith.h')
-rw-r--r-- | src/lj_carith.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lj_carith.h b/src/lj_carith.h index acb095db..6870172b 100644 --- a/src/lj_carith.h +++ b/src/lj_carith.h | |||
@@ -12,7 +12,8 @@ | |||
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 | 14 | ||
15 | LJ_FUNC uint64_t lj_carith_powi64(uint64_t x, uint64_t k, int isunsigned); | 15 | LJ_FUNC uint64_t lj_carith_powu64(uint64_t x, uint64_t k); |
16 | LJ_FUNC int64_t lj_carith_powi64(int64_t x, int64_t k); | ||
16 | 17 | ||
17 | #endif | 18 | #endif |
18 | 19 | ||