[pypy-svn] r77711 - pypy/branch/arm-backend/pypy/jit/backend/llsupport

david at codespeak.net david at codespeak.net
Fri Oct 8 11:11:07 CEST 2010


Author: david
Date: Fri Oct  8 11:11:05 2010
New Revision: 77711

Modified:
   pypy/branch/arm-backend/pypy/jit/backend/llsupport/regalloc.py
Log:
Remove self from compute_loop_consts arguments

Modified: pypy/branch/arm-backend/pypy/jit/backend/llsupport/regalloc.py
==============================================================================
--- pypy/branch/arm-backend/pypy/jit/backend/llsupport/regalloc.py	(original)
+++ pypy/branch/arm-backend/pypy/jit/backend/llsupport/regalloc.py	Fri Oct  8 11:11:05 2010
@@ -384,7 +384,7 @@
         assert isinstance(arg, Box)
     return longevity
 
-def compute_loop_consts(self, inputargs, jump, looptoken):
+def compute_loop_consts(inputargs, jump, looptoken):
     if jump.getopnum() != rop.JUMP or jump.getdescr() is not looptoken:
         loop_consts = {}
     else:



More information about the Pypy-commit mailing list