[pypy-commit] pypy arm-backend-2: Deactivate float support on ARMHF again. There is an issue with libffi so we can not reliably test the float support by running the unit tests on top of cpython

bivab noreply at buildbot.pypy.org
Tue Aug 21 14:18:14 CEST 2012


Author: David Schneider <david.schneider at picle.org>
Branch: arm-backend-2
Changeset: r56774:2975b9a30cc7
Date: 2012-08-21 14:17 +0200
http://bitbucket.org/pypy/pypy/changeset/2975b9a30cc7/

Log:	Deactivate float support on ARMHF again. There is an issue with
	libffi so we can not reliably test the float support by running the
	unit tests on top of cpython

diff --git a/pypy/jit/backend/arm/runner.py b/pypy/jit/backend/arm/runner.py
--- a/pypy/jit/backend/arm/runner.py
+++ b/pypy/jit/backend/arm/runner.py
@@ -164,4 +164,4 @@
 class CPU_ARMHF(AbstractARMCPU):
     """ARM v7 uses hardfp ABI, requires vfp"""
     use_hf_abi = True
-    supports_floats = True
+    supports_floats = False


More information about the pypy-commit mailing list