From 972cad3a89d2856a6969328a9870a1b472cd9fd2 Mon Sep 17 00:00:00 2001 From: Fabrice Desclaux Date: Fri, 25 Dec 2020 21:37:02 +0100 Subject: Rename examples lifter --- example/expression/asm_to_ir.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'example/expression/asm_to_ir.py') diff --git a/example/expression/asm_to_ir.py b/example/expression/asm_to_ir.py index 9be7d1b3..635c12c2 100644 --- a/example/expression/asm_to_ir.py +++ b/example/expression/asm_to_ir.py @@ -43,9 +43,9 @@ print(loc_db) patches = asmblock.asm_resolve_final(mn_x86, asmcfg) # Translate to IR -ir_arch = LifterModelCall_x86_32(loc_db) -ircfg = ir_arch.new_ircfg_from_asmcfg(asmcfg) -deadrm = DeadRemoval(ir_arch) +lifter = LifterModelCall_x86_32(loc_db) +ircfg = lifter.new_ircfg_from_asmcfg(asmcfg) +deadrm = DeadRemoval(lifter) # Display IR -- cgit 1.4.1