1
0
Fork 0
mirror of https://github.com/sockspls/badfish synced 2025-07-11 03:29:14 +00:00

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)
#include <immintrin.h>
#elif defined(USE_SSE41)
#include <smmintrin.h>
#elif defined(USE_SSE2)
#include <emmintrin.h>
#endif