[pypy-svn] r53358 - pypy/branch/jit-hotpath/pypy/jit/codegen/ia32

fijal at codespeak.net fijal at codespeak.net
Fri Apr 4 21:52:04 CEST 2008


Author: fijal
Date: Fri Apr  4 21:52:04 2008
New Revision: 53358

Modified:
   pypy/branch/jit-hotpath/pypy/jit/codegen/ia32/rgenop.py
Log:
Boom, test is passing :)


Modified: pypy/branch/jit-hotpath/pypy/jit/codegen/ia32/rgenop.py
==============================================================================
--- pypy/branch/jit-hotpath/pypy/jit/codegen/ia32/rgenop.py	(original)
+++ pypy/branch/jit-hotpath/pypy/jit/codegen/ia32/rgenop.py	Fri Apr  4 21:52:04 2008
@@ -802,8 +802,8 @@
 
     def newfloatfrommem(self, base, reg, shift, ofs):
         res = FloatVar(self.stackdepth + 1)
-        self.mc.PUSH(memSIB(base, reg, shift, ofs))
         self.mc.PUSH(memSIB(base, reg, shift, ofs + WORD))
+        self.mc.PUSH(memSIB(base, reg, shift, ofs))
         self.stackdepth += 2
         return res
 



More information about the Pypy-commit mailing list