summaryrefslogtreecommitdiff
path: root/python/mediumlevelil.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/mediumlevelil.py')
-rw-r--r--python/mediumlevelil.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/mediumlevelil.py b/python/mediumlevelil.py
index e12d8fe1..d10080f2 100644
--- a/python/mediumlevelil.py
+++ b/python/mediumlevelil.py
@@ -1811,7 +1811,7 @@ class MediumLevelILIntrinsic(MediumLevelILInstruction):
@property
def operands(self) -> List[MediumLevelILOperandType]:
- return [self.output, self.intrinsic, self.params]
+ return [self.output, self.intrinsic, self.params] # TODO: Expand output and params before regeneration
@dataclass(frozen=True, repr=False)