diff --git a/src/asmjit/x86/x86instimpl.cpp b/src/asmjit/x86/x86instimpl.cpp index a45fbed..f5f1877 100644 --- a/src/asmjit/x86/x86instimpl.cpp +++ b/src/asmjit/x86/x86instimpl.cpp @@ -132,7 +132,7 @@ static ASMJIT_INLINE bool x86CheckOSig(const X86Inst::OSignature& op, const X86I if ((refMemFlags & opMemFlags) == 0) return false; - if ((refMemFlags & X86Inst::kMemOpBaseOnly) && !(opMemFlags && X86Inst::kMemOpBaseOnly)) + if ((refMemFlags & X86Inst::kMemOpBaseOnly) && !(opMemFlags & X86Inst::kMemOpBaseOnly)) return false; }