Author: Richard Plangger <planri...@gmail.com>
Branch: ppc-vsx-support
Changeset: r85596:6d2e011d1895
Date: 2016-07-07 13:57 +0200
http://bitbucket.org/pypy/pypy/changeset/6d2e011d1895/

Log:    call mulld, codebuilder has no method mul

diff --git a/rpython/jit/backend/ppc/vector_ext.py 
b/rpython/jit/backend/ppc/vector_ext.py
--- a/rpython/jit/backend/ppc/vector_ext.py
+++ b/rpython/jit/backend/ppc/vector_ext.py
@@ -319,7 +319,7 @@
             if op == '+':
                 self.mc.add(tgt, tgt, acc)
             elif op == '*':
-                self.mc.mul(tgt, tgt, acc)
+                self.mc.mulld(tgt, tgt, acc)
             else:
                 not_implemented("sum not implemented")
             return
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to