summaryrefslogtreecommitdiff
path: root/Source/Core/Common/GenericFPURoundMode.cpp
blob: 2043ba87df01a2d94db4c7c8e58139117367d302 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Copyright 2003 Dolphin Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later

#include "Common/FPURoundMode.h"

#include "Common/CommonTypes.h"

// Generic, do nothing
namespace Common::FPU
{
void SetSIMDMode(RoundMode rounding_mode, bool non_ieee_mode)
{
}
void SaveSIMDState()
{
}
void LoadSIMDState()
{
}
void LoadDefaultSIMDState()
{
}
}  // namespace Common::FPU