Skip to content

Commit

Permalink
FreeBSD buildfix.
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
unknownbrackets committed May 14, 2016
1 parent 51bcb02 commit 1f28d80
Showing 1 changed file with 10 additions and 11 deletions.
21 changes: 10 additions & 11 deletions Core/MIPS/IR/IRInterpreter.cpp
Original file line number Diff line number Diff line change
@@ -1,24 +1,23 @@
#ifdef _M_SSE
#include <smmintrin.h>
#endif

#include <algorithm>
#include <cmath>

#include "math/math_util.h"
#include "Common/Common.h"

#ifdef _M_SSE
#include <xmmintrin.h>
#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 },
Expand Down

0 comments on commit 1f28d80

Please sign in to comment.