mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-05-14 08:12:16 +00:00
Fix V_CMP_CLASS_F32 (#1153)
This commit is contained in:
parent
398019867b
commit
c7ff0419ad
1 changed files with 2 additions and 0 deletions
|
@ -909,6 +909,8 @@ void Translator::V_CMP_CLASS_F32(const GcnInst& inst) {
|
||||||
switch (inst.dst[1].field) {
|
switch (inst.dst[1].field) {
|
||||||
case OperandField::VccLo:
|
case OperandField::VccLo:
|
||||||
return ir.SetVcc(value);
|
return ir.SetVcc(value);
|
||||||
|
case OperandField::ScalarGPR:
|
||||||
|
return ir.SetThreadBitScalarReg(IR::ScalarReg(inst.dst[1].code), value);
|
||||||
default:
|
default:
|
||||||
UNREACHABLE();
|
UNREACHABLE();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue