Cycles: Fix compilation on 32bit Linux with GCC-9

We don't use explicit SIMD flags on 32bit, so trying to use
intrinsics was causing issues.
This commit is contained in:
Sergey Sharybin
2019-08-05 11:47:47 +02:00
parent 94dce826a9
commit 9620b8f6bb
+1 -1
View File
@@ -45,7 +45,7 @@
# endif
# if defined(__x86_64__) || defined(__i386__) || defined(_M_X64) || defined(_M_IX86)
# if defined(__x86_64__) || defined(_M_X64)
# define SIMD_SET_FLUSH_TO_ZERO \
_MM_SET_FLUSH_ZERO_MODE(_MM_FLUSH_ZERO_ON); \
_MM_SET_DENORMALS_ZERO_MODE(_MM_DENORMALS_ZERO_ON);