Author: Richard Plangger <planri...@gmail.com>
Branch: 
Changeset: r83474:7e0e8c6d8985
Date: 2016-04-01 08:38 +0200
http://bitbucket.org/pypy/pypy/changeset/7e0e8c6d8985/

Log:    is_jit_debug takes the integer opnum as argument

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 rop.is_jit_debug(op):
+        if rop.is_jit_debug(op.getopnum()):
             return
 
         for arg in op.getarglist():
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to