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

@ -5,7 +5,7 @@
#include "Common/CommonTypes.h"
namespace FPURoundMode
namespace Common::FPU
{
enum RoundMode : u32
{
@ -27,4 +27,4 @@ void SetSIMDMode(RoundMode rounding_mode, bool non_ieee_mode);
void SaveSIMDState();
void LoadSIMDState();
void LoadDefaultSIMDState();
} // namespace FPURoundMode
} // namespace Common::FPU