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

rxe at codespeak.net rxe at codespeak.net
Thu Jul 20 21:43:29 CEST 2006


Author: rxe
Date: Thu Jul 20 21:43:27 2006
New Revision: 30301

Modified:
   pypy/dist/pypy/translator/llvm/gc.py
Log:
argh - how many silly bugs can i introduce.



Modified: pypy/dist/pypy/translator/llvm/gc.py
==============================================================================
--- pypy/dist/pypy/translator/llvm/gc.py	(original)
+++ pypy/dist/pypy/translator/llvm/gc.py	Thu Jul 20 21:43:27 2006
@@ -204,8 +204,8 @@
 
 
     def op__collect(self, codewriter, opr):
-        self.codewriter.call(opr.retref, opr.rettype, "%pypy_gc__collect",
-                             opr.argtypes, opr.argrefs)
+        codewriter.call(opr.retref, opr.rettype, "%pypy_gc__collect",
+                        opr.argtypes, opr.argrefs)
 
 class RefcountingGcPolicy(RawGcPolicy):
 



More information about the Pypy-commit mailing list