mirror of
https://github.com/LuaJIT/LuaJIT.git
synced 2025-02-07 23:24:09 +00:00
Avoid compiler warnings.
This commit is contained in:
parent
a148a6aa00
commit
97875c4fa9
@ -264,7 +264,7 @@ static int ffi_arith_int64(lua_State *L, CTState *cts, FFIArith *fa, MMS mm)
|
||||
*up = u0 % u1;
|
||||
break;
|
||||
case MM_pow: *up = lj_cdata_powi64(u0, u1, (id == CTID_UINT64)); break;
|
||||
case MM_unm: *up = -u0; break;
|
||||
case MM_unm: *up = (uint64_t)-(int64_t)u0; break;
|
||||
default: lua_assert(0); break;
|
||||
}
|
||||
lj_gc_check(L);
|
||||
|
Loading…
Reference in New Issue
Block a user