From d22691798187585df60826582ff71103d18b8367 Mon Sep 17 00:00:00 2001 From: Mark Wooding Date: Sat, 5 Nov 2016 21:28:22 +0000 Subject: [PATCH] math/mpx-mul4-x86-sse2.S: Use `movdqa' to move between XMM registers. Not `movdqu'. I don't think there's a performance difference (any more), but it's better style. --- math/mpx-mul4-x86-sse2.S | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/math/mpx-mul4-x86-sse2.S b/math/mpx-mul4-x86-sse2.S index ab238862..0e87ff58 100644 --- a/math/mpx-mul4-x86-sse2.S +++ b/math/mpx-mul4-x86-sse2.S @@ -276,7 +276,7 @@ psrldq \c1, 8 // (0, y^*_1, 0, 0) psrldq \c2, 4 // (0, 0, y^*_2, 0) .ifnes "\h", "nil" - movdqu \t, \c3 + movdqa \t, \c3 pxor \u, \u .endif pslldq \c3, 12 // (0, 0, 0, y^*_3) -- 2.11.0