diff options
| author | Camille Mougey <camille.mougey@cea.fr> | 2015-12-04 16:19:15 +0100 |
|---|---|---|
| committer | Ajax <commial@gmail.com> | 2015-12-07 11:10:53 +0100 |
| commit | 5199091c6f87305b82ecd6f290db82b00439bd3b (patch) | |
| tree | 6b50cd47a07f1c0d93ad08f514f50fba28ebcd44 /miasm2/ir/analysis.py | |
| parent | f35887530e7a49f67dc49f14dccd048ff6b99c8e (diff) | |
| download | miasm-5199091c6f87305b82ecd6f290db82b00439bd3b.tar.gz miasm-5199091c6f87305b82ecd6f290db82b00439bd3b.zip | |
IRA: ira parent class is now miasm2.ir.ir::ir
Diffstat (limited to 'miasm2/ir/analysis.py')
| -rw-r--r-- | miasm2/ir/analysis.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/miasm2/ir/analysis.py b/miasm2/ir/analysis.py index aa8271df..9844f58f 100644 --- a/miasm2/ir/analysis.py +++ b/miasm2/ir/analysis.py @@ -4,6 +4,7 @@ import logging from miasm2.ir.symbexec import symbexec +from miasm2.ir.ir import ir from miasm2.expression.expression \ import ExprAff, ExprCond, ExprId, ExprInt, ExprMem @@ -13,7 +14,8 @@ console_handler.setFormatter(logging.Formatter("%(levelname)-5s: %(message)s")) log.addHandler(console_handler) log.setLevel(logging.WARNING) -class ira: + +class ira(ir): """IR Analysis This class provides higher level manipulations on IR, such as dead instruction removals. |