Author: David Schneider <[email protected]>
Branch: 
Changeset: r63063:473a75371871
Date: 2013-04-05 17:17 +0200
http://bitbucket.org/pypy/pypy/changeset/473a75371871/

Log:    Enable float support on ARM hardfloat.

        Currently requires a patched version of CPython with the latest
        libffi from git to run all the tests successfully.

diff --git a/rpython/jit/backend/arm/runner.py 
b/rpython/jit/backend/arm/runner.py
--- a/rpython/jit/backend/arm/runner.py
+++ b/rpython/jit/backend/arm/runner.py
@@ -120,7 +120,7 @@
     """ARM v7 uses hardfp ABI, requires vfp"""
     hf_abi = True
     backend_name = "armv7hf"
-    supports_floats = False
+    supports_floats = True
     supports_singlefloats = False
 
 
@@ -129,5 +129,5 @@
     hf_abi = True
     arch_version = 6
     backend_name = "armv6hf"
-    supports_floats = False
+    supports_floats = True
     supports_singlefloats = False
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to