[pypy-commit] pypy arm-backend-2: disable longlong support until I find a way to implement read_timestamp on ARM

bivab noreply at buildbot.pypy.org
Thu Apr 5 14:19:14 CEST 2012


Author: David Schneider <david.schneider at picle.org>
Branch: arm-backend-2
Changeset: r54206:b3ce03aac72d
Date: 2012-04-05 12:14 +0000
http://bitbucket.org/pypy/pypy/changeset/b3ce03aac72d/

Log:	disable longlong support until I find a way to implement
	read_timestamp on ARM

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
@@ -9,7 +9,8 @@
 class ArmCPU(AbstractLLCPU):
 
     supports_floats = True
-    supports_longlong = True
+    supports_longlong = False # XXX requires an implementation of
+                              # read_timestamp that works in user mode
 
     def __init__(self, rtyper, stats, opts=None, translate_support_code=False,
                  gcdescr=None):


More information about the pypy-commit mailing list