From c687ea8692ee553476280ee5b621e861b627fa80 Mon Sep 17 00:00:00 2001 From: Rusty Wagner Date: Wed, 22 Feb 2017 00:24:14 -0500 Subject: Add SSA form APIs --- function.cpp | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'function.cpp') diff --git a/function.cpp b/function.cpp index b1d008ee..d8a5a4a7 100644 --- a/function.cpp +++ b/function.cpp @@ -147,6 +147,12 @@ Ref Function::GetLowLevelIL() const } +Ref 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); -- cgit v1.3.1