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

fijal at codespeak.net fijal at codespeak.net
Mon Apr 13 20:32:58 CEST 2009


Author: fijal
Date: Mon Apr 13 20:32:57 2009
New Revision: 64037

Modified:
   pypy/branch/pyjitpl5-simplify/pypy/jit/backend/x86/assembler.py
Log:
typo


Modified: pypy/branch/pyjitpl5-simplify/pypy/jit/backend/x86/assembler.py
==============================================================================
--- pypy/branch/pyjitpl5-simplify/pypy/jit/backend/x86/assembler.py	(original)
+++ pypy/branch/pyjitpl5-simplify/pypy/jit/backend/x86/assembler.py	Mon Apr 13 20:32:57 2009
@@ -865,7 +865,7 @@
         else:
             x = arglocs[0]
             if isinstance(x, MODRM):
-                x = stack_pos(loc.position + extra_on_stack)
+                x = stack_pos(x.position + extra_on_stack)
         self.mc.CALL(x)
         self.mc.ADD(esp, imm(WORD * extra_on_stack))
         if size == 1:



More information about the Pypy-commit mailing list