Author: Armin Rigo <[email protected]>
Branch: stmgc-c7
Changeset: r71264:98f4d805e5d2
Date: 2014-05-04 20:53 +0200
http://bitbucket.org/pypy/pypy/changeset/98f4d805e5d2/
Log: Fix
diff --git a/pypy/interpreter/pyopcode.py b/pypy/interpreter/pyopcode.py
--- a/pypy/interpreter/pyopcode.py
+++ b/pypy/interpreter/pyopcode.py
@@ -72,7 +72,7 @@
stmonly_jitdriver.jit_merge_point(
self=self, co_code=co_code,
next_instr=next_instr, ec=ec)
- rstm.push_marker(intmask(next_instr) * 2 + 1, co_code)
+ rstm.push_marker(intmask(next_instr) * 2 + 1, self.pycode)
try:
next_instr = self.handle_bytecode(co_code, next_instr, ec)
except ExitFrame:
diff --git a/pypy/module/pypyjit/interp_jit.py
b/pypy/module/pypyjit/interp_jit.py
--- a/pypy/module/pypyjit/interp_jit.py
+++ b/pypy/module/pypyjit/interp_jit.py
@@ -62,7 +62,7 @@
co_code = pycode.co_code
self.valuestackdepth = hint(self.valuestackdepth, promote=True)
- rstm.push_marker(intmask(next_instr) * 2 + 1, co_code)
+ rstm.push_marker(intmask(next_instr) * 2 + 1, self.pycode)
try:
next_instr = self.handle_bytecode(co_code, next_instr, ec)
except Yield:
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit