Author: Hakan Ardo <[email protected]>
Branch: jit-targets
Changeset: r48813:72538680f42b
Date: 2011-11-06 10:21 +0100
http://bitbucket.org/pypy/pypy/changeset/72538680f42b/
Log: we now need inputargs again...
diff --git a/pypy/jit/metainterp/history.py b/pypy/jit/metainterp/history.py
--- a/pypy/jit/metainterp/history.py
+++ b/pypy/jit/metainterp/history.py
@@ -825,7 +825,8 @@
def check_consistency(self): # for testing
"NOT_RPYTHON"
- self.check_consistency_of(self.operations)
+ seen = dict.fromkeys(self.inputargs)
+ self.check_consistency_of_branch(self.operations, seen)
@staticmethod
def check_consistency_of(operations):
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit