Author: Armin Rigo <[email protected]>
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
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit