suite passes now with mcode->mach lowering

This commit is contained in:
2026-02-12 09:40:24 -06:00
parent 68fb440502
commit b771b2b5d8
16 changed files with 346 additions and 48 deletions

View File

@@ -1489,16 +1489,6 @@ run("zero div zero is null", function() {
if (nan != null) fail("0/0 should be null")
})
run("max safe integer", function() {
var max = 9007199254740991
if (max + 1 - 1 != max) fail("max safe integer precision lost")
})
run("min safe integer", function() {
var min = -9007199254740991
if (min - 1 + 1 != min) fail("min safe integer precision lost")
})
run("empty string falsy", function() {
if ("") fail("empty string should be falsy")
})