diff options
| author | Ajax <commial@gmail.com> | 2017-01-05 17:23:51 +0100 |
|---|---|---|
| committer | Ajax <commial@gmail.com> | 2017-01-05 17:23:51 +0100 |
| commit | 7cb0c04aa97356200cf90001bfe04f8b32c84d34 (patch) | |
| tree | 4d5d0d39a68031c3888efb9252138ae715342dfb /miasm2/jitter/jitload.py | |
| parent | 776c25a65eec254b057ea7eddf39431c4e5d1916 (diff) | |
| download | miasm-7cb0c04aa97356200cf90001bfe04f8b32c84d34.tar.gz miasm-7cb0c04aa97356200cf90001bfe04f8b32c84d34.zip | |
Jitter: remove useless VmMngr argument
Diffstat (limited to '')
| -rw-r--r-- | miasm2/jitter/jitload.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miasm2/jitter/jitload.py b/miasm2/jitter/jitload.py index b2416fd5..27f26c36 100644 --- a/miasm2/jitter/jitload.py +++ b/miasm2/jitter/jitload.py @@ -297,7 +297,7 @@ class jitter: """Wrapper on JiT backend. Run the code at PC and return the next PC. @pc: address of code to run""" - return self.jit.runbloc(self.cpu, self.vm, pc, self.breakpoints_handler.callbacks) + return self.jit.runbloc(self.cpu, pc, self.breakpoints_handler.callbacks) def runiter_once(self, pc): """Iterator on callbacks results on code running from PC. |