diff options
| author | Rusty Wagner <rusty@vector35.com> | 2017-02-23 18:34:03 -0500 |
|---|---|---|
| committer | Rusty Wagner <rusty@vector35.com> | 2017-02-23 18:34:03 -0500 |
| commit | dbe5606575f6b59b82eff2f9ab7b41990b57147e (patch) | |
| tree | c940da5574655aaa9e792f0db256374eb17d7d32 /python/function.py | |
| parent | c687ea8692ee553476280ee5b621e861b627fa80 (diff) | |
Instruction starts and SSA form are a property of IL functions
Diffstat (limited to 'python/function.py')
| -rw-r--r-- | python/function.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/python/function.py b/python/function.py index 47099395..86c93bf7 100644 --- a/python/function.py +++ b/python/function.py @@ -293,11 +293,6 @@ class Function(object): 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)""" return lowlevelil.LowLevelILFunction(self.arch, core.BNGetFunctionLiftedIL(self.handle), self) |
