mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-05-14 08:12:16 +00:00
Handle setting Vcc in Translator::SetDst64 (#1826)
This commit is contained in:
parent
be4c38bf1c
commit
b1b4c8c487
1 changed files with 2 additions and 1 deletions
|
@ -439,7 +439,8 @@ void Translator::SetDst64(const InstOperand& operand, const IR::U64F64& value_ra
|
||||||
ir.SetVectorReg(IR::VectorReg(operand.code + 1), hi);
|
ir.SetVectorReg(IR::VectorReg(operand.code + 1), hi);
|
||||||
return ir.SetVectorReg(IR::VectorReg(operand.code), lo);
|
return ir.SetVectorReg(IR::VectorReg(operand.code), lo);
|
||||||
case OperandField::VccLo:
|
case OperandField::VccLo:
|
||||||
UNREACHABLE();
|
ir.SetVccLo(lo);
|
||||||
|
return ir.SetVccHi(hi);
|
||||||
case OperandField::VccHi:
|
case OperandField::VccHi:
|
||||||
UNREACHABLE();
|
UNREACHABLE();
|
||||||
case OperandField::M0:
|
case OperandField::M0:
|
||||||
|
|
Loading…
Add table
Reference in a new issue