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 18:04:11 +0100
committerFabrice Desclaux <fabrice.desclaux@cea.fr>2020-12-24 17:15:46 +0100
commit7d374b97a2c8f39ba9ac7095f3cade49f0ba0d4a (patch)
tree94ce66fbedf50280fd163552a29c726200990921 /test/arch/mep/ir/test_ir.py
parentd3ddfeeadc459b30a42c73903c13123bcadfa9b8 (diff)
downloadfocaccia-miasm-7d374b97a2c8f39ba9ac7095f3cade49f0ba0d4a.tar.gz
focaccia-miasm-7d374b97a2c8f39ba9ac7095f3cade49f0ba0d4a.zip
Rename LifterModelCallMep
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 c62e5692..87389e30 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 Lifter_MEPb, ir_a_mepb
+from miasm.arch.mep.lifter_model_call import Lifter_MEPb, LifterModelCallMepb
 from miasm.expression.expression import ExprId, ExprInt, ExprMem
 from miasm.ir.symbexec import SymbolicExecutionEngine
 from miasm.core.locationdb import LocationDB
@@ -35,7 +35,7 @@ class TestMisc(object):
             print("\nInternal representation:", iir)
 
             # Symbolic execution
-            sb = SymbolicExecutionEngine(ir_a_mepb(loc_db), regs_init)
+            sb = SymbolicExecutionEngine(LifterModelCallMepb(loc_db), regs_init)
 
             # Assign register values before symbolic evaluation
             for reg_expr_id, reg_expr_value in init_values: