[pypy-svn] r33126 - pypy/dist/pypy/translator/llvm

mwh at codespeak.net mwh at codespeak.net
Tue Oct 10 18:42:39 CEST 2006


Author: mwh
Date: Tue Oct 10 18:42:38 2006
New Revision: 33126

Modified:
   pypy/dist/pypy/translator/llvm/opwriter.py
Log:
fix the llvm tests


Modified: pypy/dist/pypy/translator/llvm/opwriter.py
==============================================================================
--- pypy/dist/pypy/translator/llvm/opwriter.py	(original)
+++ pypy/dist/pypy/translator/llvm/opwriter.py	Tue Oct 10 18:42:38 2006
@@ -392,6 +392,7 @@
         indices = arrayindices(opr.op.args[0]) + [(indextype, index)]
         self.codewriter.getelementptr(tmpvar, arraytype, array, indices)            
         self.codewriter.store(valuetype, valuevar, tmpvar) 
+    bare_setarrayitem = setarrayitem
             
     def getarraysize(self, opr):
         ARRAYTYPE = opr.op.args[0].concretetype.TO



More information about the Pypy-commit mailing list