diff options
Diffstat (limited to 'python/lowlevelil.py')
| -rw-r--r-- | python/lowlevelil.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/python/lowlevelil.py b/python/lowlevelil.py index a8814d8e..f374cd13 100644 --- a/python/lowlevelil.py +++ b/python/lowlevelil.py @@ -3031,6 +3031,14 @@ class LowLevelILFunction(object): """ core.BNFinalizeLowLevelILFunction(self.handle) + def generate_ssa_form(self): + """ + ``generate_ssa_form`` generate SSA form given the current LLIL + + :rtype: None + """ + core.BNGenerateLowLevelILSSAForm(self.handle) + def add_label_for_address(self, arch, addr): """ ``add_label_for_address`` adds a low-level IL label for the given architecture ``arch`` at the given virtual |
