summaryrefslogtreecommitdiff
path: root/thirdparty/embree/common/simd/sse.h
diff options
context:
space:
mode:
Diffstat (limited to 'thirdparty/embree/common/simd/sse.h')
-rw-r--r--thirdparty/embree/common/simd/sse.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/thirdparty/embree/common/simd/sse.h b/thirdparty/embree/common/simd/sse.h
index 1465fb4fb0..04d90533dd 100644
--- a/thirdparty/embree/common/simd/sse.h
+++ b/thirdparty/embree/common/simd/sse.h
@@ -11,7 +11,7 @@
namespace embree
{
-#if defined(__SSE4_1__)
+#if defined(__aarch64__) || defined(__SSE4_1__)
__forceinline __m128 blendv_ps(__m128 f, __m128 t, __m128 mask) {
return _mm_blendv_ps(f,t,mask);
}