diff options
| author | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2017-07-07 08:04:07 +0200 |
|---|---|---|
| committer | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2017-07-07 12:32:47 +0200 |
| commit | 0da61c83fdf9053b043391634a175b104b332e42 (patch) | |
| tree | ca4d263d99382a919564e467740a20679f31bb54 /example/expression | |
| parent | e3a4a92ae8300b51d02d9caa43ca9599fdf851f5 (diff) | |
| download | miasm-0da61c83fdf9053b043391634a175b104b332e42.tar.gz miasm-0da61c83fdf9053b043391634a175b104b332e42.zip | |
IR: rename get_bloc
Diffstat (limited to 'example/expression')
| -rw-r--r-- | example/expression/solve_condition_stp.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/example/expression/solve_condition_stp.py b/example/expression/solve_condition_stp.py index 27b0512f..2552b28f 100644 --- a/example/expression/solve_condition_stp.py +++ b/example/expression/solve_condition_stp.py @@ -39,7 +39,7 @@ def get_block(ir_arch, mdis, ad): ad = l.offset b = mdis.dis_bloc(ad) ir_arch.add_bloc(b) - b = ir_arch.get_bloc(l) + b = ir_arch.get_block(l) if b is None: raise LookupError('no block found at that address: %s' % l) return b |