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