diff options
| author | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2020-12-07 17:33:24 +0100 |
|---|---|---|
| committer | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2020-12-24 17:15:46 +0100 |
| commit | 18c181785f4a251795f541379db7c7bf74eeb8c4 (patch) | |
| tree | 63274aa39b3d048624b090d4779571ea6b75e705 /test/ir/symbexec.py | |
| parent | e6ec952904419c73531ab62443ade23985317daf (diff) | |
| download | miasm-18c181785f4a251795f541379db7c7bf74eeb8c4.tar.gz miasm-18c181785f4a251795f541379db7c7bf74eeb8c4.zip | |
Rename x86 lifter
Diffstat (limited to '')
| -rwxr-xr-x | test/ir/symbexec.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/ir/symbexec.py b/test/ir/symbexec.py index 5b4d19b2..0ab7e5a7 100755 --- a/test/ir/symbexec.py +++ b/test/ir/symbexec.py @@ -13,14 +13,14 @@ class TestSymbExec(unittest.TestCase): def test_ClassDef(self): from miasm.expression.expression import ExprInt, ExprId, ExprMem, \ ExprCompose, ExprAssign - from miasm.arch.x86.sem import ir_x86_32 + from miasm.arch.x86.sem import Lifter_X86_32 from miasm.core.locationdb import LocationDB from miasm.ir.symbexec import SymbolicExecutionEngine from miasm.ir.ir import AssignBlock loc_db = LocationDB() - lifter_model_call = ir_x86_32(loc_db) + lifter_model_call = Lifter_X86_32(loc_db) ircfg = lifter_model_call.new_ircfg() id_x = ExprId('x', 32) @@ -235,7 +235,7 @@ class TestSymbExec(unittest.TestCase): # Test memory full print('full') - arch_addr8 = ir_x86_32(loc_db) + arch_addr8 = Lifter_X86_32(loc_db) ircfg = arch_addr8.new_ircfg() # Hack to obtain tiny address space arch_addr8.addrsize = 5 |