[pypy-commit] pypy exp-with-blackhole: oops

fijal noreply at buildbot.pypy.org
Sat May 23 11:34:49 CEST 2015


Author: Maciej Fijalkowski <fijall at gmail.com>
Branch: exp-with-blackhole
Changeset: r77503:f0063b1b6959
Date: 2015-05-18 13:50 +0200
http://bitbucket.org/pypy/pypy/changeset/f0063b1b6959/

Log:	oops

diff --git a/rpython/jit/metainterp/resume.py b/rpython/jit/metainterp/resume.py
--- a/rpython/jit/metainterp/resume.py
+++ b/rpython/jit/metainterp/resume.py
@@ -12,6 +12,7 @@
 from rpython.rtyper.lltypesystem import lltype, llmemory, rffi, rstr
 from rpython.rtyper.rclass import OBJECTPTR
 from rpython.jit.metainterp.walkvirtual import VirtualVisitor
+from rpython.rlib.rarithmetic import intmask
 
 
 # Logic to encode the chain of frames and the state of the boxes at a
@@ -399,7 +400,7 @@
         debug_print("no of consts:", len(storage.rd_consts))
         n = storage.rd_numb
         while n:
-            debug_print("nums:", " ".join([str(n.nums[i]) for i in range(len(n.nums))]))
+            debug_print("nums:", " ".join([str(intmask(n.nums[i])) for i in range(len(n.nums))]))
             n = n.prev
         if storage.rd_virtuals:
             for v in storage.rd_virtuals:


More information about the pypy-commit mailing list