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
diff options
context:
space:
mode:
authorThomas Dinges <blender@dingto.org>2015-10-25 22:48:28 +0300
committerThomas Dinges <blender@dingto.org>2015-10-26 13:52:24 +0300
commitaa49c16bd94f0ef38edcc1e24e90717799354445 (patch)
tree594fae3359426edbd185f4c987f1c8a4117c5026 /intern/cycles/util/util_optimization.h
parent72592cfbe0ea8dc6af3d17c5ea4126121b997a70 (diff)
Cleanup: Avoid some warnings on OS X with clang and update comment.
Diffstat (limited to 'intern/cycles/util/util_optimization.h')
-rw-r--r--intern/cycles/util/util_optimization.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/intern/cycles/util/util_optimization.h b/intern/cycles/util/util_optimization.h
index 42d3ca69b3a..b1f9ee6af69 100644
--- a/intern/cycles/util/util_optimization.h
+++ b/intern/cycles/util/util_optimization.h
@@ -23,7 +23,9 @@
#if defined(__KERNEL_SSE2__) || \
defined(__KERNEL_SSE3__) || \
defined(__KERNEL_SSSE3__) || \
- defined(__KERNEL_SSE41__)
+ defined(__KERNEL_SSE41__) || \
+ defined(__KERNEL_AVX__) || \
+ defined(__KERNEL_AVX2__)
/* do nothing */
#endif
@@ -45,7 +47,7 @@
/* x86-64
*
- * Compile a regular (includes SSE2), SSE3 and SSE 4.1 kernel. */
+ * Compile a regular (includes SSE2), SSE3, SSE 4.1, AVX and AVX2 kernel. */
#if defined(__x86_64__) || defined(_M_X64)