[pypy-svn] r68080 - pypy/branch/floats-via-sse2/pypy/module/pypyjit

fijal at codespeak.net fijal at codespeak.net
Thu Oct 1 01:31:45 CEST 2009


Author: fijal
Date: Thu Oct  1 01:31:45 2009
New Revision: 68080

Modified:
   pypy/branch/floats-via-sse2/pypy/module/pypyjit/policy.py
Log:
We do support floats, but force_cast is a bit too much for us so far,
ignore, keep in mind


Modified: pypy/branch/floats-via-sse2/pypy/module/pypyjit/policy.py
==============================================================================
--- pypy/branch/floats-via-sse2/pypy/module/pypyjit/policy.py	(original)
+++ pypy/branch/floats-via-sse2/pypy/module/pypyjit/policy.py	Thu Oct  1 01:31:45 2009
@@ -35,10 +35,12 @@
             # gc_id operation
             if func.__name__ == 'id__ANY':
                 return False
-        # floats
         if mod == 'pypy.rlib.rbigint':
             #if func.__name__ == '_bigint_true_divide':
             return False
+        if mod == 'pypy.rpython.lltypesystem.ll_math':
+            # XXX temporary, contains force_cast
+            return False
         if '_geninterp_' in func.func_globals: # skip all geninterped stuff
             return False
         if mod.startswith('pypy.interpreter.astcompiler.'):



More information about the Pypy-commit mailing list