[pypy-commit] pypy default: dissable for now, it makes test_convert_from_SmallFunctionSetPBCRepr_to_FunctionsPBCRep fail

hakanardo noreply at buildbot.pypy.org
Thu Nov 3 11:03:29 CET 2011


Author: Hakan Ardo <hakan at debian.org>
Branch: 
Changeset: r48684:5fb2ee9b17b4
Date: 2011-11-03 09:01 +0100
http://bitbucket.org/pypy/pypy/changeset/5fb2ee9b17b4/

Log:	dissable for now, it makes
	test_convert_from_SmallFunctionSetPBCRepr_to_FunctionsPBCRep fail

diff --git a/pypy/jit/metainterp/optimizeopt/optimizer.py b/pypy/jit/metainterp/optimizeopt/optimizer.py
--- a/pypy/jit/metainterp/optimizeopt/optimizer.py
+++ b/pypy/jit/metainterp/optimizeopt/optimizer.py
@@ -403,9 +403,9 @@
             if not value:
                 return box
             return self.interned_refs.setdefault(value, box)
-        elif constbox.type == INT:
-            value = constbox.getint()
-            return self.interned_ints.setdefault(value, box)
+        #elif constbox.type == INT:
+        #    value = constbox.getint()
+        #    return self.interned_ints.setdefault(value, box)
         else:
             return box
 


More information about the pypy-commit mailing list