[pypy-commit] pypy better-jit-hooks: bah

fijal noreply at buildbot.pypy.org
Sat Jan 7 13:07:39 CET 2012


Author: Maciej Fijalkowski <fijall at gmail.com>
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)


More information about the pypy-commit mailing list