Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/asmjit/asmjit.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/asmjit/arm/armoperand.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/asmjit/arm/armoperand.h b/src/asmjit/arm/armoperand.h
index 8d5435f..a6322a0 100644
--- a/src/asmjit/arm/armoperand.h
+++ b/src/asmjit/arm/armoperand.h
@@ -486,7 +486,7 @@ public:
//! Clones the memory operand and makes it post-index.
inline Mem post() const noexcept {
Mem result(*this);
- result.setPredicate(kOffsetPreIndex);
+ result.setPredicate(kOffsetPostIndex);
return result;
}