mirror of
https://github.com/RPCS3/rpcs3.git
synced 2024-11-16 23:17:29 +00:00
BufferUtils: fix regression on AVX path
primitive_restart_impl::upload_untouched was broken. Bug in vec_broadcast_gpr on AVX path.
This commit is contained in:
parent
dd8a337b14
commit
a604394b20
@ -544,7 +544,7 @@ void asmjit::simd_builder::vec_broadcast_gpr(u32 esize, const Operand& v, const
|
||||
this->emit(x86::Inst::kIdVpbroadcastw, v, v);
|
||||
else
|
||||
{
|
||||
this->emit(x86::Inst::kIdVpunpcklwd, v, v);
|
||||
this->emit(x86::Inst::kIdVpunpcklwd, v, v, v);
|
||||
this->emit(x86::Inst::kIdVpshufd, v, v, Imm(0));
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user