diff options
| author | Camille Mougey <camille.mougey@cea.fr> | 2015-10-23 11:26:37 +0200 |
|---|---|---|
| committer | Camille Mougey <camille.mougey@cea.fr> | 2015-10-23 13:29:06 +0200 |
| commit | dcf8369b123ec2fdfc3a0120b46d0770b8fba7c0 (patch) | |
| tree | d1a7c3d20e50f259013ef94da0d73f8f0b3077be /miasm2/jitter/jitload.py | |
| parent | 2b2858a975031aad5abdfaf6dcb123f7edee5ba1 (diff) | |
| download | miasm-dcf8369b123ec2fdfc3a0120b46d0770b8fba7c0.tar.gz miasm-dcf8369b123ec2fdfc3a0120b46d0770b8fba7c0.zip | |
JitTCC: loop in C while future basic blocks are known
Diffstat (limited to 'miasm2/jitter/jitload.py')
| -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 112920a1..68061c75 100644 --- a/miasm2/jitter/jitload.py +++ b/miasm2/jitter/jitload.py @@ -292,7 +292,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) + return self.jit.runbloc(self.cpu, self.vm, pc, self.breakpoints_handler.callbacks) def runiter_once(self, pc): """Iterator on callbacks results on code running from PC. |