diff options
| author | Peter LaFosse <peter@vector35.com> | 2017-08-08 23:55:48 -0400 |
|---|---|---|
| committer | Peter LaFosse <peter@vector35.com> | 2017-08-11 13:35:47 -0400 |
| commit | 22edfd701bff068067b43a8e6a682202d19ce122 (patch) | |
| tree | 287c2cb2b7beaeaa735a108c7dc54f7299c91164 /python/lowlevelil.py | |
| parent | c2c0d3fbbe6341a82b088f15c8732c10ff2a8ca5 (diff) | |
Fixing llil and mlil incoming/outgoing edges, and dominator apis
Diffstat (limited to 'python/lowlevelil.py')
| -rw-r--r-- | python/lowlevelil.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/python/lowlevelil.py b/python/lowlevelil.py index 9f532e6f..e50f80c6 100644 --- a/python/lowlevelil.py +++ b/python/lowlevelil.py @@ -1716,6 +1716,9 @@ class LowLevelILBasicBlock(basicblock.BasicBlock): else: return self.il_function[self.end + idx] + def _create_instance(self, view, handle): + """Internal method by super to instantiante child instances""" + return LowLevelILBasicBlock(view, handle, self.il_function) def LLIL_TEMP(n): return n | 0x80000000 |
