Author: Antonio Cuni <[email protected]>
Branch: autoreds
Changeset: r58879:7c675c0994da
Date: 2012-11-14 11:55 +0100
http://bitbucket.org/pypy/pypy/changeset/7c675c0994da/

Log:    fix test_warmspot.test_void_red_variable

diff --git a/pypy/jit/codewriter/support.py b/pypy/jit/codewriter/support.py
--- a/pypy/jit/codewriter/support.py
+++ b/pypy/jit/codewriter/support.py
@@ -103,7 +103,7 @@
         # a crash here means that you have to reorder the variable named in
         # the JitDriver.  Indeed, greens and reds must both be sorted: first
         # all INTs, followed by all REFs, followed by all FLOATs.
-        lst2 = sort_vars(args_v)
+        lst2 = sort_vars(lst)
         assert lst == lst2
         return lst
     #
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to