summaryrefslogtreecommitdiff
path: root/Source/UnitTests
diff options
context:
space:
mode:
authorLioncash <mai.iam2048@gmail.com>2023-03-21 10:49:35 -0400
committerLioncash <mai.iam2048@gmail.com>2023-03-21 10:58:13 -0400
commit0888c93d4816bed48024e39002bf4e7899c26d35 (patch)
treeb6f5eb2bbf515559825e419195266e2294b1851b /Source/UnitTests
parentd41751c954e5d6896af8ca93bfac054bc2da1d85 (diff)
Common: Move FPU-related helpers into Common namespace
Makes these utilities' namespace consistent with the majority of the Common library.
Diffstat (limited to 'Source/UnitTests')
-rw-r--r--Source/UnitTests/Core/PowerPC/JitArm64/ConvertSingleDouble.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/UnitTests/Core/PowerPC/JitArm64/ConvertSingleDouble.cpp b/Source/UnitTests/Core/PowerPC/JitArm64/ConvertSingleDouble.cpp
index e5b61d0561..12da215c96 100644
--- a/Source/UnitTests/Core/PowerPC/JitArm64/ConvertSingleDouble.cpp
+++ b/Source/UnitTests/Core/PowerPC/JitArm64/ConvertSingleDouble.cpp
@@ -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();
}