[pypy-commit] lang-smalltalk default: Remove untrue elidables

krono noreply at buildbot.pypy.org
Thu Nov 6 14:16:36 CET 2014


Author: Tobias Pape <tobias at netshed.de>
Branch: 
Changeset: r1060:2255d770994f
Date: 2014-11-06 14:16 +0100
http://bitbucket.org/pypy/lang-smalltalk/changeset/2255d770994f/

Log:	Remove untrue elidables

diff --git a/spyvm/model.py b/spyvm/model.py
--- a/spyvm/model.py
+++ b/spyvm/model.py
@@ -195,7 +195,6 @@
         return r_uint(val)
 
 
-    @jit.elidable
     def as_repr_string(self):
         return "W_SmallInteger(%d)" % self.value
 
@@ -450,7 +449,6 @@
                 name = self.s_class.name
             return "a %s" % (name or '?',)
 
-    @jit.elidable
     def as_repr_string(self):
         return self.as_embellished_string("W_O /w Class", "")
 
@@ -625,7 +623,6 @@
         w_other.changed()
         return True
 
-    @jit.elidable
     def as_repr_string(self):
         return W_AbstractObjectWithClassReference.as_embellished_string(self,
                                 className='W_PointersObject',


More information about the pypy-commit mailing list