[pypy-svn] pypy jit-lsprofile: Backed out changeset 2a3aa9abc6e5

fijal commits-noreply at bitbucket.org
Wed Apr 6 21:37:23 CEST 2011


Author: Maciej Fijalkowski <fijall at gmail.com>
Branch: jit-lsprofile
Changeset: r43180:24e193e27a49
Date: 2011-04-06 21:37 +0200
http://bitbucket.org/pypy/pypy/changeset/24e193e27a49/

Log:	Backed out changeset 2a3aa9abc6e5

diff --git a/pypy/objspace/std/typeobject.py b/pypy/objspace/std/typeobject.py
--- a/pypy/objspace/std/typeobject.py
+++ b/pypy/objspace/std/typeobject.py
@@ -10,7 +10,7 @@
 from pypy.rlib.objectmodel import we_are_translated
 from pypy.rlib.objectmodel import current_object_addr_as_int, compute_hash
 from pypy.rlib.jit import hint, purefunction_promote, we_are_jitted
-from pypy.rlib.jit import purefunction, dont_look_inside, unroll_safe
+from pypy.rlib.jit import purefunction, dont_look_inside
 from pypy.rlib.rarithmetic import intmask, r_uint
 
 # from compiler/misc.py
@@ -253,7 +253,7 @@
                     return w_value
         return None
                 
-    @unroll_safe
+
     def _lookup(w_self, key):
         space = w_self.space
         for w_class in w_self.mro_w:
@@ -262,7 +262,6 @@
                 return w_value
         return None
 
-    @unroll_safe
     def _lookup_where(w_self, key):
         # like lookup() but also returns the parent class in which the
         # attribute was found


More information about the Pypy-commit mailing list