diff options
| author | Spl3en <spl3en.contact@gmail.com> | 2019-04-19 11:43:43 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-04-19 11:43:43 +0200 |
| commit | ba981ac09eacef96f19a603409f7881925cca052 (patch) | |
| tree | b266ef7abfe2640452005f7e3bd26e8232a94a68 | |
| parent | 6783d8a5f7068b3748e3cd5006c7f55fc6b7a5e1 (diff) | |
| download | miasm-ba981ac09eacef96f19a603409f7881925cca052.tar.gz miasm-ba981ac09eacef96f19a603409f7881925cca052.zip | |
Fix typos in IR documentation
| -rw-r--r-- | miasm/ir/ir.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/miasm/ir/ir.py b/miasm/ir/ir.py index eb9857b1..372b712a 100644 --- a/miasm/ir/ir.py +++ b/miasm/ir/ir.py @@ -831,7 +831,7 @@ class IntermediateRepresentation(object): def add_block(self, block, gen_pc_updt=False): """ DEPRECATED function - Use add_block instead of add_block + Use add_asmblock_to_ircfg instead of add_block """ warnings.warn("""DEPRECATION WARNING ircfg is now out of IntermediateRepresentation @@ -844,7 +844,7 @@ class IntermediateRepresentation(object): def add_bloc(self, block, gen_pc_updt=False): """ DEPRECATED function - Use add_block instead of add_block + Use add_asmblock_to_ircfg instead of add_bloc """ self.add_block(block, gen_pc_updt) |