Author: Armin Rigo <ar...@tunes.org>
Branch: continulet-jit-2
Changeset: r53060:75ac3cc2736a
Date: 2012-03-01 16:49 +0100
http://bitbucket.org/pypy/pypy/changeset/75ac3cc2736a/

Log:    Fix on 32-bit.

diff --git a/pypy/jit/backend/x86/assembler.py 
b/pypy/jit/backend/x86/assembler.py
--- a/pypy/jit/backend/x86/assembler.py
+++ b/pypy/jit/backend/x86/assembler.py
@@ -2015,7 +2015,7 @@
         # XXX
         if IS_X86_32:
             mc.PUSH_r(ebx.value)
-            extra_esp += 1
+            extra_esp += WORD
         elif IS_X86_64:
             mc.MOV_rr(edi.value, ebx.value)
         else:
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to