#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
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
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