[pypy-svn] r62844 - pypy/branch/pyjitpl5/pypy/jit/tl

fijal at codespeak.net fijal at codespeak.net
Wed Mar 11 11:42:19 CET 2009


Author: fijal
Date: Wed Mar 11 11:42:18 2009
New Revision: 62844

Modified:
   pypy/branch/pyjitpl5/pypy/jit/tl/pypyjit_child.py
Log:
use x86 backend here


Modified: pypy/branch/pyjitpl5/pypy/jit/tl/pypyjit_child.py
==============================================================================
--- pypy/branch/pyjitpl5/pypy/jit/tl/pypyjit_child.py	(original)
+++ pypy/branch/pyjitpl5/pypy/jit/tl/pypyjit_child.py	Wed Mar 11 11:42:18 2009
@@ -2,7 +2,7 @@
 from pypy.rpython.lltypesystem import lltype
 from pypy.jit.metainterp import warmspot
 from pypy.module.pypyjit.portal import PyPyJitPolicy
-
+from pypy.jit.backend.x86.runner import CPU386
 
 # Current output: http://paste.pocoo.org/show/106540/
 #
@@ -39,7 +39,7 @@
     option.view = True
     try:
         warmspot.jittify_and_run(interp, graph, [], policy=policy,
-                                 listops=True)
+                                 listops=True, CPUClass=CPU386)
     except Exception, e:
         print '%s: %s' % (e.__class__, e)
         pdb.post_mortem(sys.exc_info()[2])



More information about the Pypy-commit mailing list