dolphin/Source/Core/Common/GenericFPURoundMode.cpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
381 B
C++
Raw Normal View History

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