From 22edfd701bff068067b43a8e6a682202d19ce122 Mon Sep 17 00:00:00 2001 From: Peter LaFosse Date: Tue, 8 Aug 2017 23:55:48 -0400 Subject: Fixing llil and mlil incoming/outgoing edges, and dominator apis --- python/lowlevelil.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'python/lowlevelil.py') 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 -- cgit v1.3.1