Fix test NaN sign

This commit is contained in:
Rerumu 2022-06-16 00:39:02 -04:00
parent 46c1dcd21f
commit e6f1f7469f

View File

@ -1,9 +1,9 @@
local loaded = {}
local linked = {}
local LUA_NAN_ARITHMETIC = 0 / 0
local LUA_NAN_CANONICAL = 0 / 0
local LUA_NAN_DEFAULT = 0 / 0
local LUA_NAN_ARITHMETIC = -(0 / 0)
local LUA_NAN_CANONICAL = -(0 / 0)
local LUA_NAN_DEFAULT = -(0 / 0)
local LUA_INFINITY = math.huge
local function is_number_equality(lhs, rhs)