diff options
| author | Camille Mougey <commial@gmail.com> | 2018-03-15 15:35:31 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-03-15 15:35:31 +0100 |
| commit | 50a0b480a729507c8e49af39588592fbfb5476b1 (patch) | |
| tree | 5d5248ceb9358a1f497f4830e821e50afb340dba /miasm2/jitter/jitcore_python.py | |
| parent | edabfcda0fa8c0dd8ab3017853b375b1ee24b754 (diff) | |
| parent | 1b534d9ad543473f12ddcb631e0cddb0cbd54ff4 (diff) | |
| download | miasm-50a0b480a729507c8e49af39588592fbfb5476b1.tar.gz miasm-50a0b480a729507c8e49af39588592fbfb5476b1.zip | |
Merge pull request #699 from serpilliere/symb_mem_hash
Symbexec: use hashtable for mem symbols
Diffstat (limited to 'miasm2/jitter/jitcore_python.py')
| -rw-r--r-- | miasm2/jitter/jitcore_python.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miasm2/jitter/jitcore_python.py b/miasm2/jitter/jitcore_python.py index a74ef7e6..799848ab 100644 --- a/miasm2/jitter/jitcore_python.py +++ b/miasm2/jitter/jitcore_python.py @@ -101,7 +101,7 @@ class JitCore_Python(jitcore.JitCore): return instr.offset # Eval current instruction (in IR) - exec_engine.eval_ir(assignblk) + exec_engine.eval_updt_assignblk(assignblk) # Check for exceptions which do not update PC exec_engine.update_cpu_from_engine() if (vmmngr.get_exception() & csts.EXCEPT_DO_NOT_UPDATE_PC != 0 or |