diff --git a/src/util/rounding.h b/src/util/rounding.h index e329d438244..5392ad642bf 100644 --- a/src/util/rounding.h +++ b/src/util/rounding.h @@ -29,7 +29,7 @@ #include #include -#if defined(__SSE__) || (defined(_M_IX86_FP) && (_M_IX86_FP >= 1)) || defined(_M_X64) +#if defined(__SSE__) || (defined(_M_IX86_FP) && (_M_IX86_FP >= 1)) || (defined(_M_X64) && !defined(_M_ARM64EC)) #include #include #endif @@ -95,7 +95,7 @@ _mesa_roundeven(double x) static inline long _mesa_lroundevenf(float x) { -#if defined(__SSE__) || (defined(_M_IX86_FP) && (_M_IX86_FP >= 1)) || defined(_M_X64) +#if defined(__SSE__) || (defined(_M_IX86_FP) && (_M_IX86_FP >= 1)) || (defined(_M_X64) && !defined(_M_ARM64EC)) #if LONG_MAX == INT64_MAX return _mm_cvtss_si64(_mm_load_ss(&x)); #elif LONG_MAX == INT32_MAX @@ -108,7 +108,6 @@ _mesa_lroundevenf(float x) #endif } - /** * \brief Rounds \c x to the nearest integer, with ties to the even integer, * and returns the value as a long int. @@ -116,7 +115,7 @@ _mesa_lroundevenf(float x) static inline long _mesa_lroundeven(double x) { -#if defined(__SSE2__) || (defined(_M_IX86_FP) && (_M_IX86_FP >= 2)) || defined(_M_X64) +#if defined(__SSE2__) || (defined(_M_IX86_FP) && (_M_IX86_FP >= 2)) || (defined(_M_X64) && !defined(_M_ARM64EC)) #if LONG_MAX == INT64_MAX return _mm_cvtsd_si64(_mm_load_sd(&x)); #elif LONG_MAX == INT32_MAX