From: Andy Polyakov Date: Fri, 9 Dec 2011 14:26:28 +0000 (+0000) Subject: x86-mont.pl: fix bug in integer-only squaring path. X-Git-Tag: OpenSSL_1_0_1-beta1~44 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=8ee0591f284bf984c13a0fe5dbac02315fe4c786;p=oweals%2Fopenssl.git x86-mont.pl: fix bug in integer-only squaring path. PR: 2648 --- diff --git a/crypto/bn/asm/x86-mont.pl b/crypto/bn/asm/x86-mont.pl index 5cd3cd2ed5..e8f6b05084 100755 --- a/crypto/bn/asm/x86-mont.pl +++ b/crypto/bn/asm/x86-mont.pl @@ -527,8 +527,10 @@ $sbit=$num; &jle (&label("sqradd")); &mov ($carry,"edx"); - &lea ("edx",&DWP(0,$sbit,"edx",2)); + &add ("edx","edx"); &shr ($carry,31); + &add ("edx",$sbit); + &adc ($carry,0); &set_label("sqrlast"); &mov ($word,$_n0); &mov ($inp,$_np);