[pypy-commit] pypy s390x-backend: test fixes broken by merge

plan_rich pypy.commits at gmail.com
Thu Mar 10 03:48:48 EST 2016


Author: Richard Plangger <planrichi at gmail.com>
Branch: s390x-backend
Changeset: r82926:8cdcda35c815
Date: 2016-03-10 08:47 +0100
http://bitbucket.org/pypy/pypy/changeset/8cdcda35c815/

Log:	test fixes broken by merge

diff --git a/pypy/doc/whatsnew-head.rst b/pypy/doc/whatsnew-head.rst
--- a/pypy/doc/whatsnew-head.rst
+++ b/pypy/doc/whatsnew-head.rst
@@ -12,3 +12,8 @@
 .. branch: s390x-backend
 
 The jit compiler backend implementation for the s390x architecutre.
+
+.. branch: s390x-enhance-speedup
+
+Refactoring to only store 64-bit values in the literal pool of the assembly. Generated machine code uses less space and runs faster.
+
diff --git a/rpython/jit/backend/zarch/test/test_assembler.py b/rpython/jit/backend/zarch/test/test_assembler.py
--- a/rpython/jit/backend/zarch/test/test_assembler.py
+++ b/rpython/jit/backend/zarch/test/test_assembler.py
@@ -605,7 +605,7 @@
 
         # ensure there is just on instruction for the 'best case'
         self.pushpop_jitframe(r.MANAGED_REGS)
-        assert stored == [(r.r2, r.r11), (r.r13,)]
+        assert stored == [(r.r2, r.r11)]
         assert stored == loaded
         stored = []
         loaded = []


More information about the pypy-commit mailing list