From 3197685ccad89e86849ff99ab4284fefda8913d4 Mon Sep 17 00:00:00 2001 From: Mark Wooding Date: Wed, 18 May 2016 10:29:03 +0100 Subject: [PATCH] symm/chacha-x86-sse2.S: Fix the register allocation comment. The four rows can't all be in XMM0. --- symm/chacha-x86-sse2.S | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/symm/chacha-x86-sse2.S b/symm/chacha-x86-sse2.S index f9ae1c4e..87fb0965 100644 --- a/symm/chacha-x86-sse2.S +++ b/symm/chacha-x86-sse2.S @@ -52,9 +52,9 @@ FUNC(chacha_core_x86_sse2) // the input matrix isn't likely to be properly aligned. // // [ 0 1 2 3] (a, xmm0) - // [ 4 5 6 7] (b, xmm0) - // [ 8 9 10 11] (c, xmm0) - // [12 13 14 15] (d, xmm0) + // [ 4 5 6 7] (b, xmm1) + // [ 8 9 10 11] (c, xmm2) + // [12 13 14 15] (d, xmm3) movdqu xmm0, [edx + 0] movdqu xmm1, [edx + 16] movdqu xmm2, [edx + 32] -- 2.11.0