Author: Armin Rigo <[email protected]>
Branch: stmgc-c7
Changeset: r70195:6cab230db021
Date: 2014-03-23 12:41 +0100
http://bitbucket.org/pypy/pypy/changeset/6cab230db021/

Log:    simplify

diff --git a/rpython/jit/backend/x86/assembler.py 
b/rpython/jit/backend/x86/assembler.py
--- a/rpython/jit/backend/x86/assembler.py
+++ b/rpython/jit/backend/x86/assembler.py
@@ -885,7 +885,7 @@
             assert rx86.fits_in_32bits(rst)
             self.mc.SEGTL()
             self.mc.MOV_rj(ebx.value, rst)
-            self.mc.LEA_rm(ebx.value, (ebx.value, -WORD))
+            self.mc.SUB_ri(ebx.value, -WORD)
             self.mc.MOV_rm(eax.value, (ebx.value, 0))
             self.mc.SEGTL()
             self.mc.MOV_jr(rst, ebx.value)
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to