Author: Richard Plangger <[email protected]>
Branch: s390x-backend
Changeset: r81601:6151e73da389
Date: 2016-01-06 14:52 +0100
http://bitbucket.org/pypy/pypy/changeset/6151e73da389/
Log: removed debug statement, r2 is the return register on the s390x not
r3
diff --git a/rpython/jit/backend/zarch/callbuilder.py
b/rpython/jit/backend/zarch/callbuilder.py
--- a/rpython/jit/backend/zarch/callbuilder.py
+++ b/rpython/jit/backend/zarch/callbuilder.py
@@ -113,10 +113,10 @@
def push_gcmap(self):
# we push *now* the gcmap, describing the status of GC registers
# after the rearrangements done just before, ignoring the return
- # value r3, if necessary
+ # value r2, if necessary
assert not self.is_call_release_gil
noregs = self.asm.cpu.gc_ll_descr.is_shadow_stack()
- gcmap = self.asm._regalloc.get_gcmap([r.r3], noregs=noregs)
+ gcmap = self.asm._regalloc.get_gcmap([r.r2], noregs=noregs)
self.asm.push_gcmap(self.mc, gcmap, store=True)
def pop_gcmap(self):
diff --git a/rpython/jit/metainterp/compile.py
b/rpython/jit/metainterp/compile.py
--- a/rpython/jit/metainterp/compile.py
+++ b/rpython/jit/metainterp/compile.py
@@ -948,7 +948,6 @@
# the virtualrefs and virtualizable have been forced by
# handle_async_forcing() just a moment ago.
from rpython.jit.metainterp.blackhole import resume_in_blackhole
- import pdb; pdb.set_trace()
hidden_all_virtuals = metainterp_sd.cpu.get_savedata_ref(deadframe)
obj = AllVirtuals.show(metainterp_sd.cpu, hidden_all_virtuals)
all_virtuals = obj.cache
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit