[pypy-svn] pypy jit-longlong: Enable withsmalllong also in -Omem.

arigo commits-noreply at bitbucket.org
Tue Jan 25 18:00:47 CET 2011


Author: Armin Rigo <arigo at tunes.org>
Branch: jit-longlong
Changeset: r41316:b538276dafbe
Date: 2011-01-24 18:18 +0100
http://bitbucket.org/pypy/pypy/changeset/b538276dafbe/

Log:	Enable withsmalllong also in -Omem.

diff --git a/pypy/config/pypyoption.py b/pypy/config/pypyoption.py
--- a/pypy/config/pypyoption.py
+++ b/pypy/config/pypyoption.py
@@ -368,6 +368,8 @@
         config.objspace.std.suggest(withmapdict=True)
         config.objspace.std.suggest(withstrslice=True)
         config.objspace.std.suggest(withstrjoin=True)
+        if not IS_64_BITS:
+            config.objspace.std.suggest(withsmalllong=True)
         # xxx other options? ropes maybe?
 
     # completely disable geninterp in a level 0 translation


More information about the Pypy-commit mailing list