[pypy-svn] r65503 - pypy/branch/pyjitpl5-experiments/pypy/jit/backend/x86

fijal at codespeak.net fijal at codespeak.net
Fri May 29 20:29:50 CEST 2009


Author: fijal
Date: Fri May 29 20:29:48 2009
New Revision: 65503

Modified:
   pypy/branch/pyjitpl5-experiments/pypy/jit/backend/x86/regalloc.py
Log:
typo


Modified: pypy/branch/pyjitpl5-experiments/pypy/jit/backend/x86/regalloc.py
==============================================================================
--- pypy/branch/pyjitpl5-experiments/pypy/jit/backend/x86/regalloc.py	(original)
+++ pypy/branch/pyjitpl5-experiments/pypy/jit/backend/x86/regalloc.py	Fri May 29 20:29:48 2009
@@ -598,7 +598,7 @@
         if len(candidates) == 1:
             return candidates[0]
         max = 0
-        choosen = None
+        chosen = None
         for one in candidates:
             next_usage = self._compute_next_usage(one, self.position)
             if next_usage == -1:



More information about the Pypy-commit mailing list