Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/intern
diff options
context:
space:
mode:
authorSergey Sharybin <sergey.vfx@gmail.com>2019-08-05 12:47:47 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2019-08-05 12:47:47 +0300
commit9620b8f6bbcf8654d9a01f90cb4585ffec14368d (patch)
treeaf8ff2304c7cc25519f0b1fe3617acb59ea5c1a8 /intern
parent94dce826a9a7b77dd99fa7cd8d3b7147913ba591 (diff)
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.
Diffstat (limited to 'intern')
-rw-r--r--intern/cycles/util/util_simd.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/cycles/util/util_simd.h b/intern/cycles/util/util_simd.h
index 8fcaadc5f53..f49cfb4184d 100644
--- a/intern/cycles/util/util_simd.h
+++ b/intern/cycles/util/util_simd.h
@@ -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);