jit: Fix vec_cmp_eq<u32>

- Emit pcmpeqd instead of the incorrect pcmpeqw
This commit is contained in:
kd-11 2023-04-15 03:55:13 +03:00 committed by kd-11
parent 98fc073f89
commit b060165817
1 changed files with 1 additions and 1 deletions

View File

@ -798,7 +798,7 @@ void asmjit::simd_builder::vec_cmp_eq(u32 esize, const Operand& dst, const Opera
}
else
{
_vec_binary_op(kIdPcmpeqw, kIdVpcmpeqw, kIdNone, dst, lhs, rhs);
_vec_binary_op(kIdPcmpeqd, kIdVpcmpeqd, kIdNone, dst, lhs, rhs);
}
}
else