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:
parent
4606a081c9
commit
46cb0d813b
1 changed files with 1 additions and 1 deletions
|
@ -430,7 +430,7 @@ void EmitX64::EmitVectorBroadcastLower8(EmitContext& ctx, IR::Inst* inst) {
|
||||||
|
|
||||||
if (code.DoesCpuSupport(Xbyak::util::Cpu::tAVX2)) {
|
if (code.DoesCpuSupport(Xbyak::util::Cpu::tAVX2)) {
|
||||||
code.vpbroadcastb(a, a);
|
code.vpbroadcastb(a, a);
|
||||||
code.movq(a, a);
|
code.vmovq(a, a);
|
||||||
} else if (code.DoesCpuSupport(Xbyak::util::Cpu::tSSSE3)) {
|
} else if (code.DoesCpuSupport(Xbyak::util::Cpu::tSSSE3)) {
|
||||||
Xbyak::Xmm tmp = ctx.reg_alloc.ScratchXmm();
|
Xbyak::Xmm tmp = ctx.reg_alloc.ScratchXmm();
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue