Author: Richard Plangger <[email protected]>
Branch: 
Changeset: r83458:f1a599da9f67
Date: 2016-03-31 14:37 +0200
http://bitbucket.org/pypy/pypy/changeset/f1a599da9f67/

Log:    is_jit_debug method was moved. fixes crashes on s390x

diff --git a/rpython/jit/backend/zarch/pool.py 
b/rpython/jit/backend/zarch/pool.py
--- a/rpython/jit/backend/zarch/pool.py
+++ b/rpython/jit/backend/zarch/pool.py
@@ -33,7 +33,7 @@
 
     def ensure_can_hold_constants(self, asm, op):
         # allocates 8 bytes in memory for pointers, long integers or floats
-        if op.is_jit_debug():
+        if rop.is_jit_debug(op):
             return
 
         for arg in op.getarglist():
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to