diff options
| author | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2017-07-07 08:17:30 +0200 |
|---|---|---|
| committer | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2017-07-07 12:33:47 +0200 |
| commit | 7c98de47f759e98fafab5e203e1f2d13e559f2cc (patch) | |
| tree | 04f99c8ce69885d911054a9bb521f1a16ed6f825 /example/ida/depgraph.py | |
| parent | 0da61c83fdf9053b043391634a175b104b332e42 (diff) | |
| download | miasm-7c98de47f759e98fafab5e203e1f2d13e559f2cc.tar.gz miasm-7c98de47f759e98fafab5e203e1f2d13e559f2cc.zip | |
IR: rename add_bloc
Diffstat (limited to 'example/ida/depgraph.py')
| -rw-r--r-- | example/ida/depgraph.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/example/ida/depgraph.py b/example/ida/depgraph.py index 12d01af9..503ed2a3 100644 --- a/example/ida/depgraph.py +++ b/example/ida/depgraph.py @@ -218,7 +218,7 @@ def launch_depgraph(): # Generate IR for block in blocks: - ir_arch.add_bloc(block) + ir_arch.add_block(block) # Get settings settings = depGraphSettingsForm(ir_arch) |