diff options
| author | serpilliere <serpilliere@users.noreply.github.com> | 2018-06-22 20:48:32 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-06-22 20:48:32 +0200 |
| commit | fbf307796f56f68cedaf763563e478155b843b83 (patch) | |
| tree | b05c169e5ff17c800a2692e0d0ddc09bb34fb881 /miasm2/analysis/dse.py | |
| parent | 191a47a37880caecb47f9b47ddf71fede335d1a0 (diff) | |
| parent | c33f2d988bda28a1b6dbe5a2c8bceb5819db9e42 (diff) | |
| download | miasm-fbf307796f56f68cedaf763563e478155b843b83.tar.gz miasm-fbf307796f56f68cedaf763563e478155b843b83.zip | |
Merge pull request #783 from commial/refactor/jitter-cleaning
Refactor/jitter cleaning
Diffstat (limited to 'miasm2/analysis/dse.py')
| -rw-r--r-- | miasm2/analysis/dse.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miasm2/analysis/dse.py b/miasm2/analysis/dse.py index 6eaf1e91..1fd177bb 100644 --- a/miasm2/analysis/dse.py +++ b/miasm2/analysis/dse.py @@ -189,7 +189,7 @@ class DSEEngine(object): self.jitter.exec_cb = self.callback # Clean jit cache to avoid multi-line basic blocks already jitted - self.jitter.jit.loc_key_to_jit_block.clear() + self.jitter.jit.clear_jitted_blocks() def attach(self, emulator): """Attach the DSE to @emulator |