[pypy-svn] pypy default: Enable inlining for pypyjit.py, this brings it closer to pypy-c

fijal commits-noreply at bitbucket.org
Thu Jan 27 09:21:22 CET 2011


Author: Maciej Fijalkowski <fijall at gmail.com>
Branch: 
Changeset: r41380:3cc227ca8ad1
Date: 2011-01-27 10:20 +0200
http://bitbucket.org/pypy/pypy/changeset/3cc227ca8ad1/

Log:	Enable inlining for pypyjit.py, this brings it closer to pypy-c

diff --git a/pypy/jit/tl/pypyjit_child.py b/pypy/jit/tl/pypyjit_child.py
--- a/pypy/jit/tl/pypyjit_child.py
+++ b/pypy/jit/tl/pypyjit_child.py
@@ -34,6 +34,6 @@
     option.view = True
     warmspot.jittify_and_run(interp, graph, [], policy=policy,
                              listops=True, CPUClass=CPUClass,
-                             backendopt=True, inline=False,
+                             backendopt=True, inline=True,
                              optimizer=OPTIMIZER_FULL)
 


More information about the Pypy-commit mailing list