[Bug] Fixed RW info of sub and subs instructions (AArch64)

This commit is contained in:
kobalicek
2024-02-23 22:08:49 +01:00
parent 4e50d8b319
commit 3ca5c186bf
4 changed files with 5 additions and 5 deletions

View File

@@ -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);
}