mirror of
https://github.com/love2d/megasource.git
synced 2026-08-19 04:05:09 +02:00
Update LuaJIT to LuaJIT/LuaJIT@d0e8893
This commit is contained in:
@@ -488,7 +488,7 @@ static void cp_expr_prefix(CPState *cp, CPValue *k)
|
||||
} else if (cp_opt(cp, '+')) {
|
||||
cp_expr_unary(cp, k); /* Nothing to do (well, integer promotion). */
|
||||
} else if (cp_opt(cp, '-')) {
|
||||
cp_expr_unary(cp, k); k->i32 = -k->i32;
|
||||
cp_expr_unary(cp, k); k->i32 = (int32_t)(~(uint32_t)k->i32+1);
|
||||
} else if (cp_opt(cp, '~')) {
|
||||
cp_expr_unary(cp, k); k->i32 = ~k->i32;
|
||||
} else if (cp_opt(cp, '!')) {
|
||||
|
||||
Reference in New Issue
Block a user