diff options
| author | Tillmann Karras <tilkax@gmail.com> | 2015-02-23 20:40:05 +0100 |
|---|---|---|
| committer | Tillmann Karras <tilkax@gmail.com> | 2015-02-24 01:02:36 +0100 |
| commit | f298f00e1b3dfd14eeeac65524c9703f0758fa5a (patch) | |
| tree | d3724f53e907f2c1008f88efdf3d08243643e181 /Source/Core/Common/Hash.cpp | |
| parent | 56795efd425fdbd080deeb0469f518c96bcc0eac (diff) | |
Clean up the intrinsics #ifdef mess
Diffstat (limited to 'Source/Core/Common/Hash.cpp')
| -rw-r--r-- | Source/Core/Common/Hash.cpp | 6 |
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; |
