mirror of
https://github.com/asmjit/asmjit.git
synced 2025-12-17 04:24:37 +03:00
[Bug] Fixed RW info of sub and subs instructions (AArch64)
This commit is contained in:
@@ -147,7 +147,7 @@ class InstructionNameData {
|
||||
suffix = name.substring(longestPrefix);
|
||||
}
|
||||
else if (longestSuffix) {
|
||||
const splitAt = Math.min(name.length - longestSuffix, kMaxPrefixSize);;
|
||||
const splitAt = Math.min(name.length - longestSuffix, kMaxPrefixSize);
|
||||
prefix = name.substring(0, splitAt);
|
||||
suffix = name.substring(splitAt);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user