Author: stian
Branch: improve-rbigint
Changeset: r56367:9b64f64a53a6
Date: 2012-07-14 01:47 +0200
http://bitbucket.org/pypy/pypy/changeset/9b64f64a53a6/

Log:    Remove elidable from a few calls.

diff --git a/pypy/rlib/rbigint.py b/pypy/rlib/rbigint.py
--- a/pypy/rlib/rbigint.py
+++ b/pypy/rlib/rbigint.py
@@ -318,16 +318,13 @@
             raise ValueError("cannot convert negative integer to unsigned int")
         return _AsULonglong_ignore_sign(self)
 
-    @jit.elidable
     def uintmask(self):
         return _AsUInt_mask(self)
 
-    @jit.elidable
     def ulonglongmask(self):
         """Return r_ulonglong(self), truncating."""
         return _AsULonglong_mask(self)
 
-    @jit.elidable
     def tofloat(self):
         return _AsDouble(self)
 
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to