From e66a6a2a1b14cc000fd0443f6554365534098be5 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Wed, 9 Mar 2016 02:33:37 -0500 Subject: [PATCH] emitter: Get rid of CanDoOpWith This was removed in Dolphin as there were no particular uses for it. I'm sure the same will apply to citra. --- src/common/x64/emitter.h | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/common/x64/emitter.h b/src/common/x64/emitter.h index 5e228f159..a1d8ab31f 100644 --- a/src/common/x64/emitter.h +++ b/src/common/x64/emitter.h @@ -190,13 +190,6 @@ struct OpArg return IsSimpleReg() && GetSimpleReg() == reg; } - bool CanDoOpWith(const OpArg &other) const - { - if (IsSimpleReg()) return true; - if (!IsSimpleReg() && !other.IsSimpleReg() && !other.IsImm()) return false; - return true; - } - int GetImmBits() const { switch (scale)