diff options
| author | Peter LaFosse <peter@vector35.com> | 2021-07-29 13:08:03 -0400 |
|---|---|---|
| committer | Peter LaFosse <peter@vector35.com> | 2021-09-05 10:09:10 -0400 |
| commit | a24b82f9b3d5dbb76f700664a97f3d4904acce30 (patch) | |
| tree | 981e990b9479e0318b4e7d8fb25038ed43fc8d18 /python/mediumlevelil.py | |
| parent | 764063b2b44dbeba5f2f318c971e4f4acfb48427 (diff) | |
Remove some unnecessary properties for various derived HLIL Instructions, add HLIL vars_read/vars_written
Additional progress on HLILInstruction refactor
Diffstat (limited to 'python/mediumlevelil.py')
| -rw-r--r-- | python/mediumlevelil.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/python/mediumlevelil.py b/python/mediumlevelil.py index fc685533..02f4a70c 100644 --- a/python/mediumlevelil.py +++ b/python/mediumlevelil.py @@ -772,6 +772,7 @@ class SetVar(MediumLevelILInstruction): assert False, "SetVar.src returned object other than, Variable, SSAVariable" return result + @dataclass(frozen=True, repr=False) class FloatingPoint(MediumLevelILInstruction): pass |
