TranslateArm: Implement NOP
This commit is contained in:
parent
e48df9d8fd
commit
939bb5c0cb
1 changed files with 1 additions and 1 deletions
|
@ -194,7 +194,7 @@ struct ArmTranslatorVisitor final {
|
|||
|
||||
// Miscellaneous instructions
|
||||
bool arm_CLZ(Cond cond, Reg d, Reg m) { return InterpretThisInstruction(); }
|
||||
bool arm_NOP() { return InterpretThisInstruction(); }
|
||||
bool arm_NOP() { return true; }
|
||||
bool arm_SEL(Cond cond, Reg n, Reg d, Reg m) { return InterpretThisInstruction(); }
|
||||
|
||||
// Unsigned sum of absolute difference functions
|
||||
|
|
Loading…
Reference in a new issue