mirror of
https://github.com/asmjit/asmjit.git
synced 2025-12-18 13:04:36 +03:00
Fixed offset index predicate in arm::Mem::post() (#388)
This commit is contained in:
@@ -486,7 +486,7 @@ public:
|
|||||||
//! Clones the memory operand and makes it post-index.
|
//! Clones the memory operand and makes it post-index.
|
||||||
inline Mem post() const noexcept {
|
inline Mem post() const noexcept {
|
||||||
Mem result(*this);
|
Mem result(*this);
|
||||||
result.setPredicate(kOffsetPreIndex);
|
result.setPredicate(kOffsetPostIndex);
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user