Merge pull request #2080 from lioncash/interp

Interpreter: Remove unnecessary prototypes and includes
This commit is contained in:
magumagu 2015-02-19 11:19:20 -08:00
commit d0c675af83
2 changed files with 0 additions and 10 deletions

View File

@ -5,18 +5,12 @@
#include <cmath> #include <cmath>
#include <limits> #include <limits>
#ifdef _WIN32
#include <intrin.h>
#endif
#include "Common/MathUtil.h" #include "Common/MathUtil.h"
#include "Core/PowerPC/Interpreter/Interpreter.h" #include "Core/PowerPC/Interpreter/Interpreter.h"
#include "Core/PowerPC/Interpreter/Interpreter_FPUtils.h" #include "Core/PowerPC/Interpreter/Interpreter_FPUtils.h"
using namespace MathUtil; using namespace MathUtil;
void UpdateSSEState();
// Extremely rare - actually, never seen. // Extremely rare - actually, never seen.
// Star Wars : Rogue Leader spams that at some point :| // Star Wars : Rogue Leader spams that at some point :|
void Interpreter::Helper_UpdateCR1() void Interpreter::Helper_UpdateCR1()

View File

@ -2,10 +2,6 @@
// Licensed under GPLv2 // Licensed under GPLv2
// Refer to the license.txt file included. // Refer to the license.txt file included.
#ifdef _WIN32
#include <intrin.h>
#endif
#include "Common/CPUDetect.h" #include "Common/CPUDetect.h"
#include "Common/FPURoundMode.h" #include "Common/FPURoundMode.h"
#include "Core/HW/GPFifo.h" #include "Core/HW/GPFifo.h"