[pypy-svn] pypy default: Don't disable inlining. If this was supposed to be time-saving, it's not since

fijal commits-noreply at bitbucket.org
Thu Jan 27 09:05:24 CET 2011


Author: Maciej Fijalkowski <fijall at gmail.com>
Branch: 
Changeset: r41379:eb4e2877c377
Date: 2011-01-27 10:04 +0200
http://bitbucket.org/pypy/pypy/changeset/eb4e2877c377/

Log:	Don't disable inlining. If this was supposed to be time-saving, it's
	not since we create more jitcodes

diff --git a/pypy/jit/tl/pypyjit.py b/pypy/jit/tl/pypyjit.py
--- a/pypy/jit/tl/pypyjit.py
+++ b/pypy/jit/tl/pypyjit.py
@@ -30,7 +30,6 @@
     BACKEND = 'c'
 
 config = get_pypy_config(translating=True)
-config.translation.backendopt.inline_threshold = 0.1
 config.translation.gc = 'boehm'
 config.objspace.nofaking = True
 config.translating = True


More information about the Pypy-commit mailing list