emit_x64_vector: Append 'v' prefix onto movq in AVX path

This is something I missed when adding in the AVX broadcast code.
This commit is contained in:
Lioncash 2018-07-21 21:33:20 -04:00 committed by MerryMage
parent 4606a081c9
commit 46cb0d813b

View file

@ -430,7 +430,7 @@ void EmitX64::EmitVectorBroadcastLower8(EmitContext& ctx, IR::Inst* inst) {
if (code.DoesCpuSupport(Xbyak::util::Cpu::tAVX2)) {
code.vpbroadcastb(a, a);
code.movq(a, a);
code.vmovq(a, a);
} else if (code.DoesCpuSupport(Xbyak::util::Cpu::tSSSE3)) {
Xbyak::Xmm tmp = ctx.reg_alloc.ScratchXmm();