util: do not assume MSVC implies SSE
authorErik Faye-Lund <erik.faye-lund@collabora.com>
Wed, 14 Aug 2019 20:28:12 +0000 (22:28 +0200)
committerErik Faye-Lund <erik.faye-lund@collabora.com>
Mon, 2 Sep 2019 12:45:45 +0000 (12:45 +0000)
This is not true for MSVC on ARM.

Signed-off-by: Erik Faye-Lund <erik.faye-lund@collabora.com>
Reviewed-by: Matt Turner <mattst88@gmail.com>
src/util/rounding.h

index 8e302921c9d00add8585f4649cc86daa54800e8c..d3fe8edb7f8bf4065303120932571152911df8ed 100644 (file)
@@ -29,8 +29,7 @@
 #include <limits.h>
 #include <stdint.h>
 
-#if defined(__SSE__) || defined(_MSC_VER)
-/* MSVC always has SSE nowadays */
+#if defined(__SSE__) || (defined(_M_IX86_FP) && (_M_IX86_FP >= 1)) || defined(_M_X64)
 #include <xmmintrin.h>
 #include <emmintrin.h>
 #endif
@@ -96,7 +95,7 @@ _mesa_roundeven(double x)
 static inline long
 _mesa_lroundevenf(float x)
 {
-#if defined(__SSE__) || defined(_MSC_VER)
+#if defined(__SSE__) || (defined(_M_IX86_FP) && (_M_IX86_FP >= 1)) || defined(_M_X64)
 #if LONG_MAX == INT64_MAX
    return _mm_cvtss_si64(_mm_load_ss(&x));
 #elif LONG_MAX == INT32_MAX
@@ -116,7 +115,7 @@ _mesa_lroundevenf(float x)
 static inline long
 _mesa_lroundeven(double x)
 {
-#if defined(__SSE2__) || defined(_MSC_VER)
+#if defined(__SSE2__) || (defined(_M_IX86_FP) && (_M_IX86_FP >= 2)) || defined(_M_X64)
 #if LONG_MAX == INT64_MAX
    return _mm_cvtsd_si64(_mm_load_sd(&x));
 #elif LONG_MAX == INT32_MAX