Skip to content

Commit ba0fadf

Browse files
Address review comments
1 parent e756000 commit ba0fadf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/Runtime/Language/SimdBool32x4OperationX86X64.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ namespace Js
1111
SIMDValue SIMDBool32x4Operation::OpBool32x4(bool x, bool y, bool z, bool w)
1212
{
1313
X86SIMDValue x86Result;
14-
x86Result.m128i_value = _mm_set_epi32((w?1:0) * -1, (z?1:0) * -1, (y?1:0) * -1, (x?1:0) * -1);
14+
x86Result.m128i_value = _mm_set_epi32(w?-1:0, z?-1:0, y?-1:0, x?-1:0);
1515
return X86SIMDValue::ToSIMDValue(x86Result);
1616
}
1717

0 commit comments

Comments
 (0)