[pypy-svn] r76414 - pypy/branch/fast-ctypes/pypy/rlib

getxsick at codespeak.net getxsick at codespeak.net
Sat Jul 31 14:43:31 CEST 2010


Author: getxsick
Date: Sat Jul 31 14:43:29 2010
New Revision: 76414

Modified:
   pypy/branch/fast-ctypes/pypy/rlib/rjitffi.py
Log:
fix translation


Modified: pypy/branch/fast-ctypes/pypy/rlib/rjitffi.py
==============================================================================
--- pypy/branch/fast-ctypes/pypy/rlib/rjitffi.py	(original)
+++ pypy/branch/fast-ctypes/pypy/rlib/rjitffi.py	Sat Jul 31 14:43:29 2010
@@ -77,6 +77,7 @@
 
             calldescr = self.get_calldescr()
             self.looptoken = LoopToken()
+            bargs = list(bargs) # make sure it's not resized before ResOperation
             oplist = [ResOperation(rop.CALL, bargs, bres, descr=calldescr),
                       ResOperation(rop.FINISH, [bres], None,
                                    descr=BasicFailDescr(0))]



More information about the Pypy-commit mailing list