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

@ -6,7 +6,7 @@
#include "Common/CommonTypes.h"
// Generic, do nothing
namespace FPURoundMode
namespace Common::FPU
{
void SetSIMDMode(RoundMode rounding_mode, bool non_ieee_mode)
{
@ -20,4 +20,4 @@ void LoadSIMDState()
void LoadDefaultSIMDState()
{
}
} // namespace FPURoundMode
} // namespace Common::FPU