diff options
| author | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2020-12-07 17:39:07 +0100 |
|---|---|---|
| committer | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2020-12-24 17:15:46 +0100 |
| commit | 0175015f936fb4a29b661ecee2e90fb224b4f4bb (patch) | |
| tree | af1dab302fc5f7b058e8ff6836355f411543c6d0 /test/arch/mep/ir/ut_helpers_ir.py | |
| parent | d52f1f76d1046d3f3dd824553a1a94405c2ff594 (diff) | |
| download | focaccia-miasm-0175015f936fb4a29b661ecee2e90fb224b4f4bb.tar.gz focaccia-miasm-0175015f936fb4a29b661ecee2e90fb224b4f4bb.zip | |
Rename mep lifter
Diffstat (limited to 'test/arch/mep/ir/ut_helpers_ir.py')
| -rw-r--r-- | test/arch/mep/ir/ut_helpers_ir.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/arch/mep/ir/ut_helpers_ir.py b/test/arch/mep/ir/ut_helpers_ir.py index ddbfdffb..24b30abe 100644 --- a/test/arch/mep/ir/ut_helpers_ir.py +++ b/test/arch/mep/ir/ut_helpers_ir.py @@ -4,7 +4,7 @@ from __future__ import print_function from miasm.arch.mep.arch import mn_mep -from miasm.arch.mep.sem import ir_mepb +from miasm.arch.mep.sem import Lifter_MEPb from miasm.arch.mep.regs import regs_init from miasm.ir.symbexec import SymbolicExecutionEngine @@ -35,7 +35,7 @@ def exec_instruction(mn_str, init_values, results, index=0, offset=0): instr.dstflow2label(loc_db) # Get the IR - im = ir_mepb(loc_db) + im = Lifter_MEPb(loc_db) iir, eiir = im.get_ir(instr) # Filter out IRDst |