[pypy-commit] pypy s390x-backend: fixed test_runner asmlen, since GE has the overflow bit set this test fails

plan_rich pypy.commits at gmail.com
Tue Feb 9 12:48:56 EST 2016


Author: Richard Plangger <planrichi at gmail.com>
Branch: s390x-backend
Changeset: r82128:42e7257e5777
Date: 2016-02-09 18:47 +0100
http://bitbucket.org/pypy/pypy/changeset/42e7257e5777/

Log:	fixed test_runner asmlen, since GE has the overflow bit set this
	test fails

diff --git a/rpython/jit/backend/zarch/test/test_runner.py b/rpython/jit/backend/zarch/test/test_runner.py
--- a/rpython/jit/backend/zarch/test/test_runner.py
+++ b/rpython/jit/backend/zarch/test/test_runner.py
@@ -26,5 +26,5 @@
 
     add_loop_instructions = "lg; lgr; larl; agr; cgfi; jge; j;$"
     # realloc frame takes the most space (from just after larl, to lay)
-    bridge_loop_instructions = "larl; lg; cgfi; jhe; lghi; " \
+    bridge_loop_instructions = "larl; lg; cgfi; jnl; lghi; " \
                                "iilf;( iihf;)? iilf;( iihf;)? basr; lg; br;$"


More information about the pypy-commit mailing list