[pypy-svn] r64204 - pypy/branch/pyjitpl5-simplify/pypy/jit/backend/x86

fijal at codespeak.net fijal at codespeak.net
Fri Apr 17 00:33:38 CEST 2009


Author: fijal
Date: Fri Apr 17 00:33:37 2009
New Revision: 64204

Modified:
   pypy/branch/pyjitpl5-simplify/pypy/jit/backend/x86/regalloc.py
Log:
it should not be an issue, but kill ebx for now...


Modified: pypy/branch/pyjitpl5-simplify/pypy/jit/backend/x86/regalloc.py
==============================================================================
--- pypy/branch/pyjitpl5-simplify/pypy/jit/backend/x86/regalloc.py	(original)
+++ pypy/branch/pyjitpl5-simplify/pypy/jit/backend/x86/regalloc.py	Fri Apr 17 00:33:37 2009
@@ -13,7 +13,7 @@
 
 # esi edi and ebp can be added to this list, provided they're correctly
 # saved and restored
-REGS = [eax, ecx, edx, ebx]
+REGS = [eax, ecx, edx]
 WORD = 4
 
 class TempBox(Box):



More information about the Pypy-commit mailing list