summaryrefslogtreecommitdiff
path: root/Source/Core/Common/Hash.cpp
diff options
context:
space:
mode:
authorPierre Bourdon <delroth@gmail.com>2015-02-24 01:31:45 +0100
committerPierre Bourdon <delroth@gmail.com>2015-02-24 01:31:45 +0100
commitb8edd8aedc75ae4e2abd8c5558af94e98c7bebcb (patch)
treec6832e8ac25a78ed769b5b76a1d9e19d5b6e2b27 /Source/Core/Common/Hash.cpp
parent7a61bd5519ccc7a648376f4c6b9a5ab2ca3c75da (diff)
parentdaf4aa09471a0113315fa49aa8409bfc9ba947fd (diff)
Merge pull request #2101 from Tilka/intrinsics
Clean up the intrinsics #ifdef mess with a common header
Diffstat (limited to 'Source/Core/Common/Hash.cpp')
-rw-r--r--Source/Core/Common/Hash.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/Source/Core/Common/Hash.cpp b/Source/Core/Common/Hash.cpp
index 63caced040..7efc4549d7 100644
--- a/Source/Core/Common/Hash.cpp
+++ b/Source/Core/Common/Hash.cpp
@@ -4,11 +4,9 @@
#include <algorithm>
#include "Common/CommonFuncs.h"
-#include "Common/Hash.h"
-#if _M_SSE >= 0x402
#include "Common/CPUDetect.h"
-#include <nmmintrin.h>
-#endif
+#include "Common/Hash.h"
+#include "Common/Intrinsics.h"
static u64 (*ptrHashFunction)(const u8 *src, u32 len, u32 samples) = &GetMurmurHash3;