[pypy-svn] r32912 - pypy/dist/pypy/translator/c

mwh at codespeak.net mwh at codespeak.net
Thu Oct 5 15:34:31 CEST 2006


Author: mwh
Date: Thu Oct  5 15:34:30 2006
New Revision: 32912

Modified:
   pypy/dist/pypy/translator/c/funcgen.py
Log:
add OP_BARE_SETARRAYITEM


Modified: pypy/dist/pypy/translator/c/funcgen.py
==============================================================================
--- pypy/dist/pypy/translator/c/funcgen.py	(original)
+++ pypy/dist/pypy/translator/c/funcgen.py	Thu Oct  5 15:34:30 2006
@@ -473,6 +473,7 @@
             items += '->items'
         return self.generic_set(op, '%s[%s]' % (items,
                                                 self.expr(op.args[1])))
+    OP_BARE_SETARRAYITEM = OP_SETARRAYITEM
 
     def OP_GETARRAYSUBSTRUCT(self, op):
         ARRAY = self.lltypemap(op.args[0]).TO



More information about the Pypy-commit mailing list