summaryrefslogtreecommitdiff
path: root/function.cpp
diff options
context:
space:
mode:
authorRusty Wagner <rusty@vector35.com>2017-02-23 18:34:03 -0500
committerRusty Wagner <rusty@vector35.com>2017-02-23 18:34:03 -0500
commitdbe5606575f6b59b82eff2f9ab7b41990b57147e (patch)
treec940da5574655aaa9e792f0db256374eb17d7d32 /function.cpp
parentc687ea8692ee553476280ee5b621e861b627fa80 (diff)
Instruction starts and SSA form are a property of IL functions
Diffstat (limited to 'function.cpp')
-rw-r--r--function.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/function.cpp b/function.cpp
index d8a5a4a7..b1d008ee 100644
--- a/function.cpp
+++ b/function.cpp
@@ -147,12 +147,6 @@ 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);