diff options
| author | Rusty Wagner <rusty.wagner@gmail.com> | 2022-12-13 22:46:39 -0500 |
|---|---|---|
| committer | Rusty Wagner <rusty.wagner@gmail.com> | 2023-01-03 10:41:46 -0500 |
| commit | ffafa54703d239414e616d88633736ced71b63a5 (patch) | |
| tree | 8158860a69828cdf529872b60084d1ce55ca8834 /lowlevelilinstruction.h | |
| parent | 3681a37debf204cf2416a807a189865a3834f300 (diff) | |
Add instruction attributes to IL instructions
Diffstat (limited to 'lowlevelilinstruction.h')
| -rw-r--r-- | lowlevelilinstruction.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lowlevelilinstruction.h b/lowlevelilinstruction.h index 387762e1..17c6bc2c 100644 --- a/lowlevelilinstruction.h +++ b/lowlevelilinstruction.h @@ -763,6 +763,9 @@ namespace BinaryNinja char* Dump() const; void Replace(ExprId expr); + void SetAttributes(uint32_t attributes); + void SetAttribute(BNILInstructionAttribute attribute, bool state = true); + void ClearAttribute(BNILInstructionAttribute attribute); template <BNLowLevelILOperation N> LowLevelILInstructionAccessor<N>& As() |
