Common: Move FPU-related helpers into Common namespace

Makes these utilities' namespace consistent with the majority of the
Common library.
This commit is contained in:
Lioncash
2023-03-21 10:49:35 -04:00
parent d41751c954
commit 0888c93d48
9 changed files with 17 additions and 17 deletions

View File

@ -84,12 +84,12 @@ public:
// Set the rounding mode to something that's as annoying as possible to handle
// (flush-to-zero enabled, and rounding not symmetric about the origin)
FPURoundMode::SetSIMDMode(FPURoundMode::RoundMode::ROUND_UP, true);
Common::FPU::SetSIMDMode(Common::FPU::RoundMode::ROUND_UP, true);
}
~TestConversion() override
{
FPURoundMode::LoadDefaultSIMDState();
Common::FPU::LoadDefaultSIMDState();
FreeCodeSpace();
}