1
0
mirror of https://github.com/RPCS3/rpcs3.git synced 2024-11-25 12:12:50 +01:00

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

View File

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