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

mwh at codespeak.net mwh at codespeak.net
Wed May 17 17:39:22 CEST 2006


Author: mwh
Date: Wed May 17 17:39:20 2006
New Revision: 27369

Modified:
   pypy/dist/pypy/translator/c/funcgen.py
Log:
remove extraneous tabs


Modified: pypy/dist/pypy/translator/c/funcgen.py
==============================================================================
--- pypy/dist/pypy/translator/c/funcgen.py	(original)
+++ pypy/dist/pypy/translator/c/funcgen.py	Wed May 17 17:39:20 2006
@@ -596,14 +596,14 @@
     OP_CAST_OPAQUE_PTR = OP_CAST_POINTER
 
     def OP_CAST_PTR_TO_WEAKADR(self, op):
-        return '\t%s = HIDE_POINTER(%s);' % (self.expr(op.result),
+        return '%s = HIDE_POINTER(%s);' % (self.expr(op.result),
                                              self.expr(op.args[0]))
 
     def OP_CAST_WEAKADR_TO_PTR(self, op):
         TYPE = self.lltypemap(op.result)
         assert TYPE != PyObjPtr
         typename = self.db.gettype(TYPE)
-        return '\t%s = (%s)REVEAL_POINTER(%s);' % (self.expr(op.result),
+        return '%s = (%s)REVEAL_POINTER(%s);' % (self.expr(op.result),
                                                    cdecl(typename, ''),
                                                    self.expr(op.args[0]))
 



More information about the Pypy-commit mailing list