shader_recompiler: Set correct operand field for VOP3b sdst. (#1335)

This commit is contained in:
squidbus 2024-10-10 13:04:51 -07:00 committed by GitHub
parent f005a95a40
commit adab68647d

View file

@ -654,7 +654,7 @@ void GcnDecodeContext::decodeInstructionVOP3(uint64_t hexInstruction) {
OpcodeVOP3 vop3Op = static_cast<OpcodeVOP3>(op);
if (IsVop3BEncoding(m_instruction.opcode)) {
m_instruction.dst[1].field = OperandField::ScalarGPR;
m_instruction.dst[1].field = getOperandField(sdst);
m_instruction.dst[1].type = ScalarType::Uint64;
m_instruction.dst[1].code = sdst;
} else {