summaryrefslogtreecommitdiff
path: root/highlevelil.cpp
diff options
context:
space:
mode:
authorRusty Wagner <rusty.wagner@gmail.com>2022-12-13 22:46:39 -0500
committerRusty Wagner <rusty.wagner@gmail.com>2023-01-03 10:41:46 -0500
commitffafa54703d239414e616d88633736ced71b63a5 (patch)
tree8158860a69828cdf529872b60084d1ce55ca8834 /highlevelil.cpp
parent3681a37debf204cf2416a807a189865a3834f300 (diff)
Add instruction attributes to IL instructions
Diffstat (limited to 'highlevelil.cpp')
-rw-r--r--highlevelil.cpp6
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);