Author: Maciej Fijalkowski <[email protected]>
Branch: better-jit-hooks
Changeset: r51108:ac3f9f68d10e
Date: 2012-01-07 14:07 +0200
http://bitbucket.org/pypy/pypy/changeset/ac3f9f68d10e/

Log:    bah

diff --git a/pypy/module/pypyjit/interp_resop.py 
b/pypy/module/pypyjit/interp_resop.py
--- a/pypy/module/pypyjit/interp_resop.py
+++ b/pypy/module/pypyjit/interp_resop.py
@@ -88,7 +88,7 @@
     args = [jit_hooks.boxint_new(space.int_w(w_arg)) for w_arg in
             space.listview(w_args)]
     if w_res is None:
-        llres = lltype.nullptr(llmemory.GCREF)
+        llres = lltype.nullptr(llmemory.GCREF.TO)
     else:
         llres = jit_hooks.boxint_new(space.int_w(w_res))
     return WrappedOp(jit_hooks.resop_new(num, args, llres), offset, repr)
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to