diff options
author | Carl Friedrich Bolz-Tereick <cfbolz@gmx.de> | 2023-05-30 14:53:51 +0200 |
---|---|---|
committer | Carl Friedrich Bolz-Tereick <cfbolz@gmx.de> | 2023-05-30 14:53:51 +0200 |
commit | 196edfb9fcd79965d60747de29db83ad3a80095b (patch) | |
tree | 3464b4bd2cd843223b4243bfe728937e6cb436b5 | |
parent | fix the somewhat fiddly exception stuff (diff) | |
download | pypy-196edfb9fcd79965d60747de29db83ad3a80095b.tar.gz pypy-196edfb9fcd79965d60747de29db83ad3a80095b.tar.bz2 pypy-196edfb9fcd79965d60747de29db83ad3a80095b.zip |
fix test
-rw-r--r-- | rpython/jit/metainterp/pyjitpl.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/rpython/jit/metainterp/pyjitpl.py b/rpython/jit/metainterp/pyjitpl.py index 4e69f3286a..634b386fe6 100644 --- a/rpython/jit/metainterp/pyjitpl.py +++ b/rpython/jit/metainterp/pyjitpl.py @@ -1460,7 +1460,6 @@ class MIFrame(object): # 'redboxes' back into the registers where it comes from. put_back_list_of_boxes3(self, jcposition, redboxes) else: - import pdb; pdb.set_trace() if jitdriver_sd.warmstate.should_unroll_one_iteration(greenboxes): if self.unroll_iterations > 0: self.unroll_iterations -= 1 @@ -1874,7 +1873,6 @@ class MIFrame(object): effectinfo = descr.get_extra_info() if effectinfo.oopspecindex == effectinfo.OS_NOT_IN_TRACE: return self.metainterp.do_not_in_trace_call(allboxes, descr) - cut_pos = self.metainterp.history.get_trace_position() if (assembler_call or effectinfo.check_forces_virtual_or_virtualizable()): @@ -2476,7 +2474,6 @@ class MetaInterp(object): def create_history(self, max_num_inputargs): self.history = history.History(max_num_inputargs, self.staticdata) - self.staticdata.stats.set_history(self.history) def _all_constants(self, *boxes): if len(boxes) == 0: |