Skip to content

Commit 9db1af9

Browse files
author
Jay Krell
committed
Fix typo.
1 parent 8f2d836 commit 9db1af9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/Common/Common/NumberUtilities.inl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ namespace Js
197197
NUMBER_UTIL_INLINE float NumberUtilities::ReinterpretBits(int value)
198198
{
199199
#if defined(_AMD64_) || _M_IX86_FP >= 2 || defined(__AVX__)
200-
return _mm_cvtss_f32(_mm_castsi128_ps(_mm_cvtsi32_si128(x)));
200+
return _mm_cvtss_f32(_mm_castsi128_ps(_mm_cvtsi32_si128(value)));
201201
#elif defined(_M_ARM32_OR_ARM64)
202202
return _CopyFloatFromInt32(value);
203203
#else

0 commit comments

Comments
 (0)