From dbe5606575f6b59b82eff2f9ab7b41990b57147e Mon Sep 17 00:00:00 2001 From: Rusty Wagner Date: Thu, 23 Feb 2017 18:34:03 -0500 Subject: Instruction starts and SSA form are a property of IL functions --- python/function.py | 5 ----- 1 file changed, 5 deletions(-) (limited to 'python/function.py') diff --git a/python/function.py b/python/function.py index 47099395..86c93bf7 100644 --- a/python/function.py +++ b/python/function.py @@ -292,11 +292,6 @@ class Function(object): """Function low level IL (read-only)""" return lowlevelil.LowLevelILFunction(self.arch, core.BNGetFunctionLowLevelIL(self.handle), self) - @property - def low_level_il_ssa_form(self): - """Function low level IL in SSA form (read-only)""" - return lowlevelil.LowLevelILFunction(self.arch, core.BNGetFunctionLowLevelILSSAForm(self.handle), self) - @property def lifted_il(self): """Function lifted IL (read-only)""" -- cgit v1.3.1