Author: Armin Rigo <[email protected]>
Branch: 
Changeset: r70117:e30ec8f6a495
Date: 2014-03-20 15:59 +0100
http://bitbucket.org/pypy/pypy/changeset/e30ec8f6a495/

Log:    A test specifically for 76b06820d08b.

diff --git a/rpython/jit/backend/x86/test/test_assembler.py 
b/rpython/jit/backend/x86/test/test_assembler.py
--- a/rpython/jit/backend/x86/test/test_assembler.py
+++ b/rpython/jit/backend/x86/test/test_assembler.py
@@ -83,3 +83,9 @@
             asm.mc.CVTTSD2SI(eax, xmm0)
         res = self.do_test(callback)
         assert res == -42
+
+    def test_xmm_pushes_8_bytes(self):
+        def callback(asm):
+            asm.regalloc_push(xmm5)
+            asm.mc.ADD(esp, imm(8))
+        self.do_test(callback)
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to