Author: hager <[email protected]>
Branch: ppc-jit-backend-rpythonization
Changeset: r52197:8004bfed337a
Date: 2012-02-07 08:57 -0800
http://bitbucket.org/pypy/pypy/changeset/8004bfed337a/

Log:    (bivab, hager): disable some code that does not work at the moment.

diff --git a/pypy/jit/backend/ppc/ppcgen/regalloc.py 
b/pypy/jit/backend/ppc/ppcgen/regalloc.py
--- a/pypy/jit/backend/ppc/ppcgen/regalloc.py
+++ b/pypy/jit/backend/ppc/ppcgen/regalloc.py
@@ -763,11 +763,13 @@
     def prepare_call(self, op):
         effectinfo = op.getdescr().get_extra_info()
         if effectinfo is not None:
-            oopspecindex = effectinfo.oopspecindex
-            if oopspecindex == EffectInfo.OS_MATH_SQRT:
-                args = self.prepare_op_math_sqrt(op, fcond)
-                self.assembler.emit_op_math_sqrt(op, args, self, fcond)
-                return
+           # XXX TODO
+            #oopspecindex = effectinfo.oopspecindex
+            #if oopspecindex == EffectInfo.OS_MATH_SQRT:
+            #    args = self.prepare_op_math_sqrt(op, fcond)
+            #    self.assembler.emit_op_math_sqrt(op, args, self, fcond)
+            #    return
+            pass
         args = [imm(rffi.cast(lltype.Signed, op.getarg(0).getint()))]
         return args
 
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to