Jit_Paired: ps_mr

This commit is contained in:
MerryMage 2018-10-15 21:02:07 +01:00
parent 96b86a9bc4
commit be8fec6244
1 changed files with 4 additions and 2 deletions

View File

@ -22,8 +22,10 @@ void Jit64::ps_mr(UGeckoInstruction inst)
if (d == b) if (d == b)
return; return;
fpr.BindToRegister(d, false); RCOpArg Rb = fpr.Use(b, RCMode::Read);
MOVAPD(fpr.RX(d), fpr.R(b)); RCX64Reg Rd = fpr.Bind(d, RCMode::Write);
RegCache::Realize(Rb, Rd);
MOVAPD(Rd, Rb);
} }
void Jit64::ps_sum(UGeckoInstruction inst) void Jit64::ps_sum(UGeckoInstruction inst)