about summary refs log tree commit diff stats
path: root/miasm2/ir/ir.py
diff options
context:
space:
mode:
authorAjax <commial@gmail.com>2017-05-09 14:06:13 +0200
committerAjax <commial@gmail.com>2017-05-09 14:06:13 +0200
commit5364019f8aa8544947768345696c248e6053e2c3 (patch)
treef391e7259f026aad01255902b4d3eacfa5c23aab /miasm2/ir/ir.py
parent66fbc8550af1de64372d1653dc9fee5a83541907 (diff)
downloadmiasm-5364019f8aa8544947768345696c248e6053e2c3.tar.gz
miasm-5364019f8aa8544947768345696c248e6053e2c3.zip
Complete the docstring of AssignBlock
Diffstat (limited to '')
-rw-r--r--miasm2/ir/ir.py8
1 files changed, 7 insertions, 1 deletions
diff --git a/miasm2/ir/ir.py b/miasm2/ir/ir.py
index 1d720e1f..8154d4da 100644
--- a/miasm2/ir/ir.py
+++ b/miasm2/ir/ir.py
@@ -33,7 +33,13 @@ class AssignBlock(object):
     EAX = EBX
     EBX = EAX
 
-    Also provides common manipulation on this assignments
+    -> Exchange between EBX and EAX
+
+    AssignBlock can be seen as a dictionnary where keys are the destinations
+    (ExprId or ExprMem), and values their corresponding sources.
+
+    Also provides common manipulation on this assignments.
+
     """
     __slots__ = ["_assigns", "_instr"]