[pypy-svn] r16083 - pypy/dist/pypy/translator/llvm2

rxe at codespeak.net rxe at codespeak.net
Mon Aug 15 21:52:11 CEST 2005


Author: rxe
Date: Mon Aug 15 21:52:10 2005
New Revision: 16083

Modified:
   pypy/dist/pypy/translator/llvm2/extfuncnode.py
Log:
Oups - missing from last checkin.



Modified: pypy/dist/pypy/translator/llvm2/extfuncnode.py
==============================================================================
--- pypy/dist/pypy/translator/llvm2/extfuncnode.py	(original)
+++ pypy/dist/pypy/translator/llvm2/extfuncnode.py	Mon Aug 15 21:52:10 2005
@@ -13,8 +13,8 @@
 
     def getdecl(self):
         T = self.value._TYPE
-        args = [self.db.repr_arg_type(a) for a in T.ARGS]
-        decl = "%s %s(%s)" % (self.db.repr_arg_type(T.RESULT),
+        args = [self.db.repr_type(a) for a in T.ARGS]
+        decl = "%s %s(%s)" % (self.db.repr_type(T.RESULT),
                               self.ref,
                               ", ".join(args))
         return decl



More information about the Pypy-commit mailing list