mirror of
https://github.com/asmjit/asmjit.git
synced 2025-12-18 13:04:36 +03:00
[Bug] Fixed x86::Compiler to not rewrite reg->mem when embedded rounding is used
This commit is contained in:
@@ -920,7 +920,7 @@ Error InstInternal::queryRWInfo(Arch arch, const BaseInst& inst, const Operand_*
|
|||||||
}
|
}
|
||||||
|
|
||||||
rmOpsMask &= instRmInfo.rmOpsMask;
|
rmOpsMask &= instRmInfo.rmOpsMask;
|
||||||
if (rmOpsMask) {
|
if (rmOpsMask && !inst.hasOption(InstOptions::kX86_ER)) {
|
||||||
Support::BitWordIterator<uint32_t> it(rmOpsMask);
|
Support::BitWordIterator<uint32_t> it(rmOpsMask);
|
||||||
do {
|
do {
|
||||||
i = it.next();
|
i = it.next();
|
||||||
|
|||||||
Reference in New Issue
Block a user