1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-10-19 02:29:40 +00:00

Fix typo in skein amd64 assembly

Sponsored by:	ScaleEngine Inc.
This commit is contained in:
Allan Jude 2016-09-08 02:38:55 +00:00
parent cee4a05669
commit 2b53c51767
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=305576

View File

@ -6,6 +6,7 @@
#
# This code is released to the public domain.
#----------------------------------------------------------------
# $FreeBSD$
#
.text
.altmacro
@ -869,7 +870,7 @@ _UNROLL_CNT = ROUNDS_512/8
.else
_UNROLL_CNT = SKEIN_UNROLL_512
.if ((ROUNDS_512/8) % _UNROLL_CNT)
.err "Invalid SKEIN_UNROLL_512"
.error "Invalid SKEIN_UNROLL_512"
.endif
xorq %rdi,%rdi #rdi = round counter
Skein_512_round_loop: