[pypy-svn] r76322 - pypy/branch/fast-ctypes/pypy/rlib

getxsick at codespeak.net getxsick at codespeak.net
Fri Jul 23 00:01:36 CEST 2010


Author: getxsick
Date: Fri Jul 23 00:01:34 2010
New Revision: 76322

Modified:
   pypy/branch/fast-ctypes/pypy/rlib/rjitffi.py
Log:
Yet Another Massive Killing

Modified: pypy/branch/fast-ctypes/pypy/rlib/rjitffi.py
==============================================================================
--- pypy/branch/fast-ctypes/pypy/rlib/rjitffi.py	(original)
+++ pypy/branch/fast-ctypes/pypy/rlib/rjitffi.py	Fri Jul 23 00:01:34 2010
@@ -54,17 +54,13 @@
         try:
             self.looptoken = self._cache[key]
         except KeyError:
-            args = []
             for arg in self.args_type:
                 if arg == 'i':
                     bargs.append(BoxInt())
-                    args.append(lltype.Signed)
                 elif arg == 'f':
                     bargs.append(BoxFloat())
-                    args.append(lltype.Float)
                 elif arg == 'p':
                     bargs.append(BoxPtr())
-                    args.append(lltype.Signed)
                 else:
                     raise ValueError(arg)
 



More information about the Pypy-commit mailing list