From 8e5386aa4a06af90bae8b5fbcd97c46bbb0a679f Mon Sep 17 00:00:00 2001 Message-Id: <8e5386aa4a06af90bae8b5fbcd97c46bbb0a679f.1718705744.git.mdw@distorted.org.uk> From: Mark Wooding Date: Sat, 5 Nov 2016 21:28:22 +0000 Subject: [PATCH 1/1] math/mpx-mul4-x86-sse2.S: Fix operand name in commentary. Organization: Straylight/Edgeware From: Mark Wooding --- 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 e466cfa9..5aee9e6c 100644 --- a/math/mpx-mul4-x86-sse2.S +++ b/math/mpx-mul4-x86-sse2.S @@ -623,7 +623,7 @@ ENDFUNC INTFUNC(mont4) // On entry, EDI points to the destination buffer holding a packed - // value A; EBX points to a packed operand N; ESI points to an + // value W; EBX points to a packed operand N; ESI points to an // expanded operand M; and EDX points to a place to store an expanded // result Y (32 bytes, at a 16-byte boundary). // -- [mdw]