Merge branch 'ripple/wasmi' into ripple/wasmi-host-functions

This commit is contained in:
Mayukha Vadari
2026-03-24 08:47:12 -07:00
891 changed files with 75892 additions and 11157 deletions

View File

@@ -199,9 +199,13 @@ public:
}
};
if (scale == MantissaRange::small)
{
test(cSmall);
}
else
{
test(cLarge);
}
{
bool caught = false;
try
@@ -291,9 +295,13 @@ public:
}
};
if (scale == MantissaRange::small)
{
test(cSmall);
}
else
{
test(cLarge);
}
}
void
@@ -314,9 +322,13 @@ public:
};
auto tests = [&](auto const& cSmall, auto const& cLarge) {
if (scale == MantissaRange::small)
{
test(cSmall);
}
else
{
test(cLarge);
}
};
auto const maxMantissa = Number::maxMantissa();
@@ -622,9 +634,13 @@ public:
auto const maxMantissa = Number::maxMantissa();
auto tests = [&](auto const& cSmall, auto const& cLarge) {
if (scale == MantissaRange::small)
{
test(cSmall);
}
else
{
test(cLarge);
}
};
saveNumberRoundMode save{Number::setround(Number::to_nearest)};
{