[pypy-commit] pypy arm-backend-2: implement support for sqrt in the ARM backend

bivab noreply at buildbot.pypy.org
Fri Jun 24 17:39:57 CEST 2011


Author: David Schneider <david.schneider at picle.org>
Branch: arm-backend-2
Changeset: r45109:88232e7ef74c
Date: 2011-06-24 17:42 +0200
http://bitbucket.org/pypy/pypy/changeset/88232e7ef74c/

Log:	implement support for sqrt in the ARM backend

diff --git a/pypy/jit/backend/arm/regalloc.py b/pypy/jit/backend/arm/regalloc.py
--- a/pypy/jit/backend/arm/regalloc.py
+++ b/pypy/jit/backend/arm/regalloc.py
@@ -450,7 +450,6 @@
                 args = self.prepare_op_math_sqrt(op, fcond)
                 self.assembler.emit_op_math_sqrt(op, args, self, fcond)
                 return
-        self._consider_call(op)
         args = [imm(rffi.cast(lltype.Signed, op.getarg(0).getint()))]
         return args
 


More information about the pypy-commit mailing list