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/mediumlevelil.py | |
| parent | c2c0d3fbbe6341a82b088f15c8732c10ff2a8ca5 (diff) | |
Fixing llil and mlil incoming/outgoing edges, and dominator apis
Diffstat (limited to 'python/mediumlevelil.py')
| -rw-r--r-- | python/mediumlevelil.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/python/mediumlevelil.py b/python/mediumlevelil.py index feca0937..c837aa42 100644 --- a/python/mediumlevelil.py +++ b/python/mediumlevelil.py @@ -885,3 +885,7 @@ class MediumLevelILBasicBlock(basicblock.BasicBlock): return self.il_function[idx + self.start] else: return self.il_function[self.end + idx] + + def _create_instance(self, view, handle): + """Internal method by super to instantiante child instances""" + return MediumLevelILBasicBlock(view, handle, self.il_function) |
