Skip to content

Commit

Permalink
Update file(s): 2024-05-01
Browse files Browse the repository at this point in the history
  • Loading branch information
horsicq committed May 1, 2024
1 parent d0b588b commit 328da02
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 @@ -587,6 587,10 @@ bool XCapstone::isNopOpcode(XBinary::DMFAMILY dmFamily, quint32 nOpcodeID)
if (nOpcodeID == MIPS_INS_NOP) {
bResult = true;
}
} else if (dmFamily == XBinary::DMFAMILY_WASM) {
if (nOpcodeID == WASM_INS_NOP) {
bResult = true;
}
}
// TODO Other archs

Expand Down

0 comments on commit 328da02

Please sign in to comment.