2015-05-25 11:11:41 +00:00
|
|
|
// Copyright 2003 Dolphin Emulator Project
|
2021-07-05 01:22:19 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2012-12-17 21:01:52 +00:00
|
|
|
|
2014-02-20 03:11:52 +00:00
|
|
|
#include "Common/FPURoundMode.h"
|
2012-12-26 18:12:26 +00:00
|
|
|
|
2021-12-10 02:22:16 +00:00
|
|
|
#include "Common/CommonTypes.h"
|
|
|
|
|
2013-02-26 19:49:00 +00:00
|
|
|
// Generic, do nothing
|
2023-03-21 14:49:35 +00:00
|
|
|
namespace Common::FPU
|
2012-12-17 21:01:52 +00:00
|
|
|
{
|
2021-07-18 01:55:06 +00:00
|
|
|
void SetSIMDMode(RoundMode rounding_mode, bool non_ieee_mode)
|
2013-02-26 19:49:00 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
void SaveSIMDState()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
void LoadSIMDState()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
void LoadDefaultSIMDState()
|
|
|
|
{
|
|
|
|
}
|
2023-03-21 14:49:35 +00:00
|
|
|
} // namespace Common::FPU
|