dolphin/Source/Core/Common/GenericFPURoundMode.cpp

23 lines
380 B
C++
Raw Normal View History

2015-05-25 05:11:41 -06:00
// Copyright 2003 Dolphin Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
2012-12-17 14:01:52 -07:00
#include "Common/CommonTypes.h"
#include "Common/FPURoundMode.h"
2012-12-26 11:12:26 -07:00
2013-02-26 12:49:00 -07:00
// Generic, do nothing
namespace FPURoundMode
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)
{
}
void SaveSIMDState()
{
}
void LoadSIMDState()
{
}
void LoadDefaultSIMDState()
{
}
} // namespace FPURoundMode