mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-28 19:58:53 +00:00
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:
parent
d41751c954
commit
0888c93d48
9 changed files with 17 additions and 17 deletions
|
@ -11,6 +11,8 @@
|
|||
#include "Common/CommonTypes.h"
|
||||
#include "Common/Logging/Log.h"
|
||||
|
||||
namespace Common::FPU
|
||||
{
|
||||
static u64 GetFPCR()
|
||||
{
|
||||
#ifdef _MSC_VER
|
||||
|
@ -31,8 +33,6 @@ static void SetFPCR(u64 fpcr)
|
|||
#endif
|
||||
}
|
||||
|
||||
namespace FPURoundMode
|
||||
{
|
||||
static const u64 default_fpcr = GetFPCR();
|
||||
static u64 saved_fpcr = default_fpcr;
|
||||
|
||||
|
@ -87,4 +87,4 @@ void LoadDefaultSIMDState()
|
|||
SetFPCR(default_fpcr);
|
||||
}
|
||||
|
||||
} // namespace FPURoundMode
|
||||
} // namespace Common::FPU
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue