Author: Maciej Fijalkowski <[email protected]>
Branch: jit-threshold-hooks
Changeset: r66325:3548c4e24114
Date: 2013-08-26 17:52 +0100
http://bitbucket.org/pypy/pypy/changeset/3548c4e24114/

Log:    oops

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
@@ -43,7 +43,7 @@
 
 def set_jitcell_at(newcell, next_instr, is_being_profiled, bytecode):
     key = (next_instr << 1) | r_uint(intmask(is_being_profiled))
-    bytecode.jit_cells[key] = cast_instance_to_base_ptr(newcell)
+    bytecode.jit_cells[key] = newcell
 
 
 def should_unroll_one_iteration(next_instr, is_being_profiled, bytecode):
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to