diff options
Diffstat (limited to 'example/expression/get_read_write.py')
| -rw-r--r-- | example/expression/get_read_write.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/example/expression/get_read_write.py b/example/expression/get_read_write.py index f4dde4b5..a31105b2 100644 --- a/example/expression/get_read_write.py +++ b/example/expression/get_read_write.py @@ -18,7 +18,7 @@ ir_arch.add_instr(l) print '*' * 80 for lbl, b in ir_arch.blocks.items(): print b - for irs in b.irs: + for irs in b.assignblks: o_r, o_w = get_rw(irs) print 'read: ', [str(x) for x in o_r] print 'written:', [str(x) for x in o_w] |