[pypy-commit] pypy rdict-experiments-3: don't look into this function

fijal noreply at buildbot.pypy.org
Fri Oct 25 18:08:24 CEST 2013


Author: Maciej Fijalkowski <fijall at gmail.com>
Branch: rdict-experiments-3
Changeset: r67601:5c1b0e817070
Date: 2013-10-25 18:07 +0200
http://bitbucket.org/pypy/pypy/changeset/5c1b0e817070/

Log:	don't look into this function

diff --git a/rpython/rtyper/lltypesystem/rdict.py b/rpython/rtyper/lltypesystem/rdict.py
--- a/rpython/rtyper/lltypesystem/rdict.py
+++ b/rpython/rtyper/lltypesystem/rdict.py
@@ -609,6 +609,7 @@
     some += newsize >> 3
     return newsize + some
 
+ at jit.dont_look_inside
 def ll_dict_grow(d):
     if d.num_items < d.num_used_items // 4:
         ll_dict_remove_deleted_items(d)


More information about the pypy-commit mailing list