x64Emitter: fix silent failure if WriteNormalOp is passed two memory operands
Should now fail loudly and clearly instead.
This commit is contained in:
parent
74f8a48ee6
commit
02dce5dbbf
|
@ -1222,6 +1222,7 @@ void XEmitter::WriteNormalOp(XEmitter *emit, int bits, NormalOp op, const OpArg
|
|||
}
|
||||
else
|
||||
{
|
||||
_assert_msg_(DYNA_REC, a2.IsSimpleReg() || a2.IsImm(), "WriteNormalOp - a1 and a2 cannot both be memory");
|
||||
a1.WriteNormalOp(emit, true, op, a2, bits);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue