diff options
| author | Brian Potchik <brian@vector35.com> | 2022-08-19 22:51:30 -0400 |
|---|---|---|
| committer | Brian Potchik <brian@vector35.com> | 2022-08-19 22:51:30 -0400 |
| commit | 03d08ab28700c95527f275d009501b0815e436ac (patch) | |
| tree | 163e19ee9ee08756cd5c7e082b2716b665939204 /python/mediumlevelil.py | |
| parent | 37be644b0333001eccba24641d943c3dca898b01 (diff) | |
Produce non-ast HLIL expression forms for HLIL mappings.
Diffstat (limited to 'python/mediumlevelil.py')
| -rw-r--r-- | python/mediumlevelil.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/mediumlevelil.py b/python/mediumlevelil.py index ceb33f50..bdc9b954 100644 --- a/python/mediumlevelil.py +++ b/python/mediumlevelil.py @@ -480,7 +480,7 @@ class MediumLevelILInstruction(BaseILInstruction): expr = self.function.get_high_level_il_expr_index(self.expr_index) if expr is None or self.function.high_level_il is None: return None - return highlevelil.HighLevelILInstruction.create(self.function.high_level_il, expr) + return highlevelil.HighLevelILInstruction.create(self.function.high_level_il, expr, False) @property def hlil(self) -> Optional[highlevelil.HighLevelILInstruction]: @@ -494,7 +494,7 @@ class MediumLevelILInstruction(BaseILInstruction): if self.function.high_level_il is None: return result for expr in exprs: - result.append(highlevelil.HighLevelILInstruction.create(self.function.high_level_il, expr)) + result.append(highlevelil.HighLevelILInstruction.create(self.function.high_level_il, expr, False)) return result @property |
