Author: Armin Rigo <ar...@tunes.org>
Branch: jit-counter
Changeset: r67782:d52de5c7b0f7
Date: 2013-10-31 14:35 +0100
http://bitbucket.org/pypy/pypy/changeset/d52de5c7b0f7/

Log:    triviality

diff --git a/rpython/jit/metainterp/counter.py 
b/rpython/jit/metainterp/counter.py
--- a/rpython/jit/metainterp/counter.py
+++ b/rpython/jit/metainterp/counter.py
@@ -75,9 +75,8 @@
         cell = self.celltable[index]
         keep = newcell
         while cell is not None:
-            remove_me = cell.should_remove_jitcell()
             nextcell = cell.next
-            if not remove_me:
+            if not cell.should_remove_jitcell():
                 cell.next = keep
                 keep = cell
             cell = nextcell
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to