summaryrefslogtreecommitdiffstats
path: root/src/common
diff options
context:
space:
mode:
Diffstat (limited to 'src/common')
-rw-r--r--src/common/x64/emitter.h7
1 files changed, 0 insertions, 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)