Author: Richard Plangger <planri...@gmail.com> Branch: ppc-vsx-support Changeset: r85954:7510e65f6e05 Date: 2016-08-01 14:45 +0200 http://bitbucket.org/pypy/pypy/changeset/7510e65f6e05/
Log: impl. vec_float_xor (missing change) diff --git a/rpython/jit/backend/x86/vector_ext.py b/rpython/jit/backend/x86/vector_ext.py --- a/rpython/jit/backend/x86/vector_ext.py +++ b/rpython/jit/backend/x86/vector_ext.py @@ -274,6 +274,8 @@ def genop_vec_int_xor(self, op, arglocs, resloc): self.mc.PXOR(resloc, arglocs[0]) + genop_vec_float_xor = genop_vec_int_xor + genop_vec_float_arith = """ def genop_vec_float_{type}(self, op, arglocs, resloc): loc0, loc1, itemsize_loc = arglocs @@ -639,6 +641,7 @@ consider_vec_int_and = consider_vec_logic consider_vec_int_or = consider_vec_logic consider_vec_int_xor = consider_vec_logic + consider_vec_float_xor = consider_vec_logic del consider_vec_logic def consider_vec_pack_i(self, op): _______________________________________________ pypy-commit mailing list pypy-commit@python.org https://mail.python.org/mailman/listinfo/pypy-commit