[openssl-commits] [openssl] master update

Andy Polyakov appro at openssl.org
Fri May 6 07:46:53 UTC 2016


The branch master has been updated
       via  284116575d375729e672256cb2b754e8362c5bce (commit)
      from  3732f12c668421b229eddcc1b3af2a4806ec9865 (commit)


- Log -----------------------------------------------------------------
commit 284116575d375729e672256cb2b754e8362c5bce
Author: Andy Polyakov <appro at openssl.org>
Date:   Wed May 4 23:45:35 2016 +0200

    poly1305/asm/poly1305-x86_64.pl: make it cross-compile.
    
    Reviewed-by: Richard Levitte <levitte at openssl.org>

-----------------------------------------------------------------------

Summary of changes:
 crypto/poly1305/asm/poly1305-x86_64.pl | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/crypto/poly1305/asm/poly1305-x86_64.pl b/crypto/poly1305/asm/poly1305-x86_64.pl
index e2a38ec..89acc5f 100755
--- a/crypto/poly1305/asm/poly1305-x86_64.pl
+++ b/crypto/poly1305/asm/poly1305-x86_64.pl
@@ -495,10 +495,10 @@ poly1305_blocks_avx:
 
 	################################# base 2^26 -> base 2^64
 	mov	$d1#d,$h0#d
-	and	\$`-1<<31`,$d1
+	and	\$`-1*(1<<31)`,$d1
 	mov	$d2,$r1			# borrow $r1
 	mov	$d2#d,$h1#d
-	and	\$`-1<<31`,$d2
+	and	\$`-1*(1<<31)`,$d2
 
 	shr	\$6,$d1
 	shl	\$52,$r1
@@ -1383,10 +1383,10 @@ poly1305_blocks_avx2:
 
 	################################# base 2^26 -> base 2^64
 	mov	$d1#d,$h0#d
-	and	\$`-1<<31`,$d1
+	and	\$`-1*(1<<31)`,$d1
 	mov	$d2,$r1			# borrow $r1
 	mov	$d2#d,$h1#d
-	and	\$`-1<<31`,$d2
+	and	\$`-1*(1<<31)`,$d2
 
 	shr	\$6,$d1
 	shl	\$52,$r1


More information about the openssl-commits mailing list