[pypy-svn] r67533 - pypy/trunk/pypy/jit/tl

arigo at codespeak.net arigo at codespeak.net
Sat Sep 5 19:27:18 CEST 2009


Author: arigo
Date: Sat Sep  5 19:27:18 2009
New Revision: 67533

Modified:
   pypy/trunk/pypy/jit/tl/pypyjit_child.py
Log:
Disable supports_floats here, until the frontend is
ready to handle all float operations used in PyPy.


Modified: pypy/trunk/pypy/jit/tl/pypyjit_child.py
==============================================================================
--- pypy/trunk/pypy/jit/tl/pypyjit_child.py	(original)
+++ pypy/trunk/pypy/jit/tl/pypyjit_child.py	Sat Sep  5 19:27:18 2009
@@ -38,6 +38,7 @@
 
     print 'warmspot.jittify_and_run() started...'
     from pypy.jit.backend.llgraph.runner import LLtypeCPU
+    LLtypeCPU.supports_floats = False    # for now
     policy = PyPyJitPolicy(interp.typer.annotator.translator)
     option.view = True
     warmspot.jittify_and_run(interp, graph, [], policy=policy,



More information about the Pypy-commit mailing list