about summary refs log tree commit diff stats
path: root/example/expression/asm_to_ir.py
diff options
context:
space:
mode:
authorserpilliere <serpilliere@users.noreply.github.com>2020-12-26 00:03:54 +0100
committerGitHub <noreply@github.com>2020-12-26 00:03:54 +0100
commit1673c3eb29d88cbd7b642419c197fa0993ca5871 (patch)
treeb5489af2d481c9db7f3c530d3b1634031cfbd4d5 /example/expression/asm_to_ir.py
parent931a7d95bf48ec35b9c69b4e22b890f512164a9b (diff)
parent1d95a7febaee8c53df432cdbf1539f6f58a4d5d9 (diff)
downloadmiasm-1673c3eb29d88cbd7b642419c197fa0993ca5871.tar.gz
miasm-1673c3eb29d88cbd7b642419c197fa0993ca5871.zip
Merge pull request #1335 from serpilliere/rename_ir_arch
Rename ir arch
Diffstat (limited to '')
-rw-r--r--example/expression/asm_to_ir.py6
1 files changed, 3 insertions, 3 deletions
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