[pypy-commit] pypy speedup-list-comprehension: disable this check for now

fijal noreply at buildbot.pypy.org
Thu Feb 23 05:12:45 CET 2012


Author: Maciej Fijalkowski <fijall at gmail.com>
Branch: speedup-list-comprehension
Changeset: r52790:3846122a4dd5
Date: 2012-02-22 20:59 -0700
http://bitbucket.org/pypy/pypy/changeset/3846122a4dd5/

Log:	disable this check for now

diff --git a/pypy/rlib/jit.py b/pypy/rlib/jit.py
--- a/pypy/rlib/jit.py
+++ b/pypy/rlib/jit.py
@@ -474,9 +474,10 @@
             for var, value in livevars.items():
                 if var not in self._heuristic_order:
                     if isinstance(value, (r_longlong, r_ulonglong)):
-                        assert 0, ("should not pass a r_longlong argument for "
-                                   "now, because on 32-bit machines it would "
-                                   "need to be ordered as a FLOAT")
+                        pass
+                        #assert 0, ("should not pass a r_longlong argument for "
+                        #           "now, because on 32-bit machines it would "
+                        #           "need to be ordered as a FLOAT")
                     elif isinstance(value, (int, long, r_singlefloat)):
                         kind = '1:INT'
                     elif isinstance(value, float):


More information about the pypy-commit mailing list