diff options
| author | Camille Mougey <commial@gmail.com> | 2018-06-10 16:23:50 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-06-10 16:23:50 +0200 |
| commit | 08c27666179e37206919bf58f214eb62b14100a3 (patch) | |
| tree | d8b40165bf2bd1552eb3b36c389e37caabe0a675 /miasm2/jitter/jitcore.py | |
| parent | 7d55449414bdca973632af879694a27a4edf385e (diff) | |
| parent | 924237fea92f689172330b9bb203b3faf263b929 (diff) | |
| download | miasm-08c27666179e37206919bf58f214eb62b14100a3.tar.gz miasm-08c27666179e37206919bf58f214eb62b14100a3.zip | |
Merge pull request #754 from serpilliere/fix_asmcfg_label
Jitter: label to_string
Diffstat (limited to '')
| -rw-r--r-- | miasm2/jitter/jitcore.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miasm2/jitter/jitcore.py b/miasm2/jitter/jitcore.py index 8fd3453e..bf56b9de 100644 --- a/miasm2/jitter/jitcore.py +++ b/miasm2/jitter/jitcore.py @@ -153,7 +153,7 @@ class JitCore(object): return cur_block # Logging if self.log_newbloc: - print cur_block + print cur_block.to_string(self.mdis.symbol_pool) # Update label -> block self.lbl2bloc[cur_block.loc_key] = cur_block |