From ffafa54703d239414e616d88633736ced71b63a5 Mon Sep 17 00:00:00 2001 From: Rusty Wagner Date: Tue, 13 Dec 2022 22:46:39 -0500 Subject: Add instruction attributes to IL instructions --- lowlevelil.cpp | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'lowlevelil.cpp') diff --git a/lowlevelil.cpp b/lowlevelil.cpp index 6724e9c2..3fadd92b 100644 --- a/lowlevelil.cpp +++ b/lowlevelil.cpp @@ -593,6 +593,12 @@ void LowLevelILFunction::ReplaceExpr(size_t expr, size_t newExpr) } +void LowLevelILFunction::SetExprAttributes(size_t expr, uint32_t attributes) +{ + BNSetLowLevelILExprAttributes(m_object, expr, attributes); +} + + void LowLevelILFunction::AddLabelForAddress(Architecture* arch, ExprId addr) { BNAddLowLevelILLabelForAddress(m_object, arch->GetObject(), addr); -- cgit v1.3.1