We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f2d836 commit 9db1af9Copy full SHA for 9db1af9
lib/Common/Common/NumberUtilities.inl
@@ -197,7 +197,7 @@ namespace Js
197
NUMBER_UTIL_INLINE float NumberUtilities::ReinterpretBits(int value)
198
{
199
#if defined(_AMD64_) || _M_IX86_FP >= 2 || defined(__AVX__)
200
- return _mm_cvtss_f32(_mm_castsi128_ps(_mm_cvtsi32_si128(x)));
+ return _mm_cvtss_f32(_mm_castsi128_ps(_mm_cvtsi32_si128(value)));
201
#elif defined(_M_ARM32_OR_ARM64)
202
return _CopyFloatFromInt32(value);
203
#else
0 commit comments