V_NOP = Do nothing
This commit is contained in:
DanielSvoboda 2024-08-13 15:50:46 -03:00 committed by GitHub
parent d8b9d82ffa
commit a9c1d1d59b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -305,6 +305,8 @@ void Translator::EmitVectorAlu(const GcnInst& inst) {
return V_MBCNT_U32_B32(true, inst);
case Opcode::V_MBCNT_HI_U32_B32:
return V_MBCNT_U32_B32(false, inst);
case Opcode::V_NOP:
return;
default:
LogMissingOpcode(inst);
}