mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-01-18 12:38:27 +00:00
shader_recompiler/frontend: implement V_NOP
This commit is contained in:
parent
b52741b714
commit
510ad570d4
|
@ -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 a new issue