Skip to content

Commit

Permalink
Update file(s): 2024-02-13
Browse files Browse the repository at this point in the history
  • Loading branch information
horsicq committed Feb 13, 2024
1 parent 310a86d commit 7d60f5f
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions xcapstone.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -446,6 446,10 @@ bool XCapstone::isJumpOpcode(XBinary::DMFAMILY dmFamily, const QString &sOpcode,
if (sOpcode == "jmp") {
bResult = true;
}
} else if (dmFamily == XBinary::DMFAMILY_ARM) {
if (sOpcode == "b") {
bResult = true;
}
}
// TODO Other archs

Expand Down

0 comments on commit 7d60f5f

Please sign in to comment.