about summary refs log tree commit diff stats
path: root/example/expression/get_read_write.py
diff options
context:
space:
mode:
authorFabrice Desclaux <fabrice.desclaux@cea.fr>2017-02-15 07:20:23 +0100
committerFabrice Desclaux <fabrice.desclaux@cea.fr>2017-03-13 14:13:09 +0100
commitc3940991f2461278fdb3c7faff8b270320585556 (patch)
treed4eae779f301e0d346c757b92e7461a7d4dd4c89 /example/expression/get_read_write.py
parente94fb099ce7cf80f57d21306de4c2b59ce7b3006 (diff)
downloadmiasm-c3940991f2461278fdb3c7faff8b270320585556.tar.gz
miasm-c3940991f2461278fdb3c7faff8b270320585556.zip
IR: rename blocs to blocks
Diffstat (limited to 'example/expression/get_read_write.py')
-rw-r--r--example/expression/get_read_write.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/example/expression/get_read_write.py b/example/expression/get_read_write.py
index cb9e0900..f4dde4b5 100644
--- a/example/expression/get_read_write.py
+++ b/example/expression/get_read_write.py
@@ -16,7 +16,7 @@ l.offset, l.l = 0, 15
 ir_arch.add_instr(l)
 
 print '*' * 80
-for lbl, b in ir_arch.blocs.items():
+for lbl, b in ir_arch.blocks.items():
     print b
     for irs in b.irs:
         o_r, o_w = get_rw(irs)