[pypy-svn] pypy arm-backed-float: disable the second entry point for loops until the calling convention implementation supports float

bivab commits-noreply at bitbucket.org
Fri Apr 1 11:03:04 CEST 2011


Author: David Schneider <david.schneider at picle.org>
Branch: arm-backed-float
Changeset: r43067:34a60527b2d4
Date: 2011-03-31 11:44 +0200
http://bitbucket.org/pypy/pypy/changeset/34a60527b2d4/

Log:	disable the second entry point for loops until the calling
	convention implementation supports float

diff --git a/pypy/jit/backend/arm/assembler.py b/pypy/jit/backend/arm/assembler.py
--- a/pypy/jit/backend/arm/assembler.py
+++ b/pypy/jit/backend/arm/assembler.py
@@ -361,6 +361,8 @@
         return arglocs
 
     def gen_direct_bootstrap_code(self, arglocs, loop_head, looptoken):
+        #XXX fixme later, when float calling conv works
+        return
         self.gen_func_prolog()
         if len(arglocs) > 4:
             reg_args = 4


More information about the Pypy-commit mailing list