mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-07-22 10:04:39 +00:00
shader_recompiler/frontend: implement V_NOP
This commit is contained in:
parent
c79b10edc1
commit
d241867c7b
@ -305,6 +305,9 @@ void Translator::EmitVectorAlu(const GcnInst& inst) {
|
|||||||
return V_MBCNT_U32_B32(true, inst);
|
return V_MBCNT_U32_B32(true, inst);
|
||||||
case Opcode::V_MBCNT_HI_U32_B32:
|
case Opcode::V_MBCNT_HI_U32_B32:
|
||||||
return V_MBCNT_U32_B32(false, inst);
|
return V_MBCNT_U32_B32(false, inst);
|
||||||
|
|
||||||
|
case Opcode::V_NOP:
|
||||||
|
return;
|
||||||
default:
|
default:
|
||||||
LogMissingOpcode(inst);
|
LogMissingOpcode(inst);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user