summaryrefslogtreecommitdiff
path: root/function.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'function.cpp')
-rw-r--r--function.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/function.cpp b/function.cpp
index b1d008ee..d8a5a4a7 100644
--- a/function.cpp
+++ b/function.cpp
@@ -147,6 +147,12 @@ Ref<LowLevelILFunction> Function::GetLowLevelIL() const
}
+Ref<LowLevelILFunction> Function::GetLowLevelILSSAForm() const
+{
+ return new LowLevelILFunction(BNGetFunctionLowLevelILSSAForm(m_object));
+}
+
+
size_t Function::GetLowLevelILForInstruction(Architecture* arch, uint64_t addr)
{
return BNGetLowLevelILForInstruction(m_object, arch->GetObject(), addr);