Fix compilation under Linux with -DUSE_SSE41.

This commit is contained in:
joergoster
2020-06-27 19:41:13 +02:00
parent 32c204fb56
commit 96f2541191

View File

@@ -7,6 +7,8 @@
#if defined(USE_AVX2) #if defined(USE_AVX2)
#include <immintrin.h> #include <immintrin.h>
#elif defined(USE_SSE41)
#include <smmintrin.h>
#elif defined(USE_SSE2) #elif defined(USE_SSE2)
#include <emmintrin.h> #include <emmintrin.h>
#endif #endif