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 /highlevelilinstruction.h | |
| parent | 3681a37debf204cf2416a807a189865a3834f300 (diff) | |
Add instruction attributes to IL instructions
Diffstat (limited to 'highlevelilinstruction.h')
| -rw-r--r-- | highlevelilinstruction.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/highlevelilinstruction.h b/highlevelilinstruction.h index 13d146ac..7ac97d2d 100644 --- a/highlevelilinstruction.h +++ b/highlevelilinstruction.h @@ -370,6 +370,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); size_t GetInstructionIndex() const; HighLevelILInstruction GetInstruction() const; |
