From 1f28d802a3fefa8acf4b09f909c39cb055302c3a Mon Sep 17 00:00:00 2001 From: "Unknown W. Brackets" Date: Sat, 14 May 2016 09:05:42 -0700 Subject: [PATCH] FreeBSD buildfix. We need Common to have the right _M_SSE define. Also, let's not define SSE4 until we need it, since we might need ifs. --- Core/MIPS/IR/IRInterpreter.cpp | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) diff --git a/Core/MIPS/IR/IRInterpreter.cpp b/Core/MIPS/IR/IRInterpreter.cpp index 55a613b25771..c9540c69f627 100644 --- a/Core/MIPS/IR/IRInterpreter.cpp +++ b/Core/MIPS/IR/IRInterpreter.cpp @@ -1,24 +1,23 @@ -#ifdef _M_SSE -#include -#endif - #include #include +#include "math/math_util.h" +#include "Common/Common.h" + +#ifdef _M_SSE +#include +#endif + #include "Core/MemMap.h" #include "Core/HLE/HLE.h" #include "Core/HLE/ReplaceTables.h" +#include "Core/MIPS/MIPS.h" #include "Core/MIPS/MIPSTables.h" #include "Core/MIPS/MIPSVFPUUtils.h" -#include "Core/System.h" -#include "Core/CoreTiming.h" - -#include "math/math_util.h" -#include "Common/CommonTypes.h" -#include "Core/MemMap.h" -#include "Core/MIPS/MIPS.h" #include "Core/MIPS/IR/IRInst.h" #include "Core/MIPS/IR/IRInterpreter.h" +#include "Core/System.h" +#include "Core/CoreTiming.h" alignas(16) float vec4InitValues[8][4] = { { 0.0f, 0.0f, 0.0f, 0.0f },