dolphin/Source/Core/Common/GenericFPURoundMode.cpp

30 lines
475 B
C++
Raw Normal View History

2015-05-25 13:11:41 +02:00
// Copyright 2003 Dolphin Emulator Project
2015-05-18 01:08:10 +02:00
// Licensed under GPLv2+
2015-05-25 13:11:41 +02:00
// Refer to the license.txt file included.
2012-12-17 22:01:52 +01:00
#include "Common/CommonTypes.h"
#include "Common/FPURoundMode.h"
2012-12-26 19:12:26 +01:00
2013-02-26 20:49:00 +01:00
// Generic, do nothing
namespace FPURoundMode
2012-12-17 22:01:52 +01: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