From a24b82f9b3d5dbb76f700664a97f3d4904acce30 Mon Sep 17 00:00:00 2001 From: Peter LaFosse Date: Thu, 29 Jul 2021 13:08:03 -0400 Subject: Remove some unnecessary properties for various derived HLIL Instructions, add HLIL vars_read/vars_written Additional progress on HLILInstruction refactor --- python/variable.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'python/variable.py') diff --git a/python/variable.py b/python/variable.py index 1ed38c2d..d5e318c2 100644 --- a/python/variable.py +++ b/python/variable.py @@ -812,8 +812,8 @@ class ParameterVariables: @dataclass(frozen=True, order=True) class AddressRange: - start:int - end:int + start:int # Inclusive starting address + end:int # Exclusive ending address def __repr__(self): return f"<{self.start:#x}-{self.end:#x}>" \ No newline at end of file -- cgit v1.3.1