sha/asm/sha1-x86_64.pl: fix crash in SHAEXT code on Windows.

RT#4530

Reviewed-by: Tim Hudson <tjh@openssl.org>
This commit is contained in:
Andy Polyakov 2016-07-31 21:19:57 +02:00
parent b4b42ce621
commit 7123aa81e9

View File

@ -380,9 +380,9 @@ $code.=<<___;
.align 16
.Loop_shaext:
dec $num
lea 0x40($inp),%rax # next input block
lea 0x40($inp),%r8 # next input block
paddd @MSG[0],$E
cmovne %rax,$inp
cmovne %r8,$inp
movdqa $ABCD,$ABCD_SAVE # offload $ABCD
___
for($i=0;$i<20-4;$i+=2) {