[pypy-svn] r65099 - pypy/branch/pyjitpl5/pypy/jit/backend/llgraph

antocuni at codespeak.net antocuni at codespeak.net
Wed May 6 16:15:42 CEST 2009


Author: antocuni
Date: Wed May  6 16:15:41 2009
New Revision: 65099

Modified:
   pypy/branch/pyjitpl5/pypy/jit/backend/llgraph/llimpl.py
Log:
bah, r65093 was broken, revert it for now.
print '\n'.join(['You should always run tests before committing'] * 100)



Modified: pypy/branch/pyjitpl5/pypy/jit/backend/llgraph/llimpl.py
==============================================================================
--- pypy/branch/pyjitpl5/pypy/jit/backend/llgraph/llimpl.py	(original)
+++ pypy/branch/pyjitpl5/pypy/jit/backend/llgraph/llimpl.py	Wed May  6 16:15:41 2009
@@ -733,8 +733,8 @@
 
     def op_setarrayitem_gc(self, typedescr, obj, index, objnewvalue):
         array = ootype.cast_from_object(typedescr.ARRAY, obj)
-        newvalue = ootype.cast_from_object(typedescr.TYPE, objnewvalue)
-        array.ll_setitem_fast(index, newvalue)
+        #newvalue = ootype.cast_from_object(typedescr.TYPE, objnewvalue)
+        array.ll_setitem_fast(index, objnewvalue)
 
     def op_arraylen_gc(self, typedescr, obj):
         array = ootype.cast_from_object(typedescr.ARRAY, obj)



More information about the Pypy-commit mailing list