Fix i64
sign check
This commit is contained in:
parent
5d4aa97cd5
commit
ec20ac5482
@ -327,7 +327,7 @@ end
|
||||
function Numeric.is_negative(value)
|
||||
local _, data_2 = into_u32(value)
|
||||
|
||||
return data_2 > BIT_SET_31
|
||||
return data_2 >= BIT_SET_31
|
||||
end
|
||||
|
||||
function Numeric.is_zero(value)
|
||||
|
Loading…
x
Reference in New Issue
Block a user