dolphin/Source/Core/Common/GenericFPURoundMode.cpp

30 lines
475 B
C++
Raw Normal View History

2015-05-25 11:11:41 +00:00
// Copyright 2003 Dolphin Emulator Project
2015-05-17 23:08:10 +00:00
// Licensed under GPLv2+
2015-05-25 11:11:41 +00:00
// Refer to the license.txt file included.
2012-12-17 21:01:52 +00:00
#include "Common/CommonTypes.h"
#include "Common/FPURoundMode.h"
2012-12-26 18:12:26 +00:00
2013-02-26 19:49:00 +00:00
// Generic, do nothing
namespace FPURoundMode
2012-12-17 21:01:52 +00:00
{
void SetRoundMode(int mode)
{
}
void SetPrecisionMode(PrecisionMode mode)
{
}
void SetSIMDMode(int rounding_mode, bool non_ieee_mode)
{
}
void SaveSIMDState()
{
}
void LoadSIMDState()
{
}
void LoadDefaultSIMDState()
{
}
} // namespace FPURoundMode