about summary refs log tree commit diff stats
path: root/test/arch/mep/ir/test_ir.py
diff options
context:
space:
mode:
authorFabrice Desclaux <fabrice.desclaux@cea.fr>2020-12-07 17:39:07 +0100
committerFabrice Desclaux <fabrice.desclaux@cea.fr>2020-12-24 17:15:46 +0100
commit0175015f936fb4a29b661ecee2e90fb224b4f4bb (patch)
treeaf1dab302fc5f7b058e8ff6836355f411543c6d0 /test/arch/mep/ir/test_ir.py
parentd52f1f76d1046d3f3dd824553a1a94405c2ff594 (diff)
downloadmiasm-0175015f936fb4a29b661ecee2e90fb224b4f4bb.tar.gz
miasm-0175015f936fb4a29b661ecee2e90fb224b4f4bb.zip
Rename mep lifter
Diffstat (limited to 'test/arch/mep/ir/test_ir.py')
-rw-r--r--test/arch/mep/ir/test_ir.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/arch/mep/ir/test_ir.py b/test/arch/mep/ir/test_ir.py
index c811988b..c62e5692 100644
--- a/test/arch/mep/ir/test_ir.py
+++ b/test/arch/mep/ir/test_ir.py
@@ -6,7 +6,7 @@ from __future__ import print_function
 from miasm.core.utils import decode_hex
 from miasm.arch.mep.arch import mn_mep
 from miasm.arch.mep.regs import regs_init
-from miasm.arch.mep.lifter_model_call import ir_mepb, ir_a_mepb
+from miasm.arch.mep.lifter_model_call import Lifter_MEPb, ir_a_mepb
 from miasm.expression.expression import ExprId, ExprInt, ExprMem
 from miasm.ir.symbexec import SymbolicExecutionEngine
 from miasm.core.locationdb import LocationDB
@@ -30,7 +30,7 @@ class TestMisc(object):
             loc_db = LocationDB()
 
             # Get the IR
-            im = ir_mepb(loc_db)
+            im = Lifter_MEPb(loc_db)
             iir, eiir, = im.get_ir(mn)
             print("\nInternal representation:", iir)