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
Notes: blender-bot 2023-02-14 01:21:19 +01:00
Referenced by issue #68260, UI: It's not possible to add a separator to EnumProperty via Python
1 changed files with 1 additions and 1 deletions

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);