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