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 /highlevelil.cpp | |
| parent | 3681a37debf204cf2416a807a189865a3834f300 (diff) | |
Add instruction attributes to IL instructions
Diffstat (limited to 'highlevelil.cpp')
| -rw-r--r-- | highlevelil.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/highlevelil.cpp b/highlevelil.cpp index 7d3789d9..6004ce08 100644 --- a/highlevelil.cpp +++ b/highlevelil.cpp @@ -422,6 +422,12 @@ void HighLevelILFunction::ReplaceExpr(size_t expr, size_t newExpr) } +void HighLevelILFunction::SetExprAttributes(size_t expr, uint32_t attributes) +{ + BNSetHighLevelILExprAttributes(m_object, expr, attributes); +} + + void HighLevelILFunction::Finalize() { BNFinalizeHighLevelILFunction(m_object); |
