diff options
| author | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2018-06-09 23:19:01 +0200 |
|---|---|---|
| committer | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2018-06-10 14:59:14 +0200 |
| commit | 924237fea92f689172330b9bb203b3faf263b929 (patch) | |
| tree | bd61c254ce94c30b2f3685970e6d2191c3a65db0 /miasm2/jitter/jitcore.py | |
| parent | 990060f21e515ff1a25246f8fdf0936a97ac698f (diff) | |
| download | miasm-924237fea92f689172330b9bb203b3faf263b929.tar.gz miasm-924237fea92f689172330b9bb203b3faf263b929.zip | |
Jitter: label to_string
Diffstat (limited to 'miasm2/jitter/jitcore.py')
| -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 |