[pypy-commit] pypy even-more-jit-hooks: we want an annotaton of int here

fijal noreply at buildbot.pypy.org
Sun Jul 8 13:40:08 CEST 2012


Author: Maciej Fijalkowski <fijall at gmail.com>
Branch: even-more-jit-hooks
Changeset: r55986:ba6d7e725867
Date: 2012-07-08 13:39 +0200
http://bitbucket.org/pypy/pypy/changeset/ba6d7e725867/

Log:	we want an annotaton of int here

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
@@ -292,7 +292,7 @@
         return space.wrap('<JitLoopInfo %s, %d operations, starting at <%s>>' %
                           (self.jd_name, lgt, code_repr))
 
- at unwrap_spec(loopno=int, asmaddr=r_uint, asmlen=r_uint, loop_no=int,
+ at unwrap_spec(loopno=int, asmaddr=int, asmlen=int, loop_no=int,
              type=str, jd_name=str)
 def descr_new_jit_loop_info(space, w_subtype, w_greenkey, w_ops, loopno,
                             asmaddr, asmlen, loop_no, type, jd_name):


More information about the pypy-commit mailing list