[pypy-commit] pypy jit-counter: Yargh

arigo noreply at buildbot.pypy.org
Thu Oct 31 14:28:37 CET 2013


Author: Armin Rigo <arigo at tunes.org>
Branch: jit-counter
Changeset: r67781:4742af107d39
Date: 2013-10-31 14:27 +0100
http://bitbucket.org/pypy/pypy/changeset/4742af107d39/

Log:	Yargh

diff --git a/rpython/jit/metainterp/warmstate.py b/rpython/jit/metainterp/warmstate.py
--- a/rpython/jit/metainterp/warmstate.py
+++ b/rpython/jit/metainterp/warmstate.py
@@ -344,6 +344,7 @@
             while cell is not None:
                 if isinstance(cell, JitCell) and cell.comparekey(*greenargs):
                     break    # found
+                cell = cell.next
             else:
                 # not found. increment the counter
                 if jitcounter.tick(index, increment_threshold):


More information about the pypy-commit mailing list