[pypy-commit] pypy improve-rbigint: We shouldn't modify rffi.TYPES in rbigint...

stian noreply at buildbot.pypy.org
Sat Jul 21 18:42:05 CEST 2012


Author: stian
Branch: improve-rbigint
Changeset: r56372:0a530a8f3731
Date: 2012-07-19 00:02 +0200
http://bitbucket.org/pypy/pypy/changeset/0a530a8f3731/

Log:	We shouldn't modify rffi.TYPES in rbigint...

diff --git a/pypy/rlib/rbigint.py b/pypy/rlib/rbigint.py
--- a/pypy/rlib/rbigint.py
+++ b/pypy/rlib/rbigint.py
@@ -20,8 +20,6 @@
 
 #SHIFT = (LONG_BIT // 2) - 1
 if SUPPORT_INT128:
-    rffi.TYPES += ["__int128"]
-    rffi.setup()
     SHIFT = 63
     BASE = long(1 << SHIFT)
     UDIGIT_TYPE = r_ulonglong


More information about the pypy-commit mailing list