TranslateArm: Implement NOP

This commit is contained in:
MerryMage 2016-08-07 20:08:31 +01:00
parent e48df9d8fd
commit 939bb5c0cb

View file

@ -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