svn commit: r305576 - head/sys/crypto/skein/amd64
Allan Jude
allanjude at FreeBSD.org
Thu Sep 8 02:38:56 UTC 2016
Author: allanjude
Date: Thu Sep 8 02:38:55 2016
New Revision: 305576
URL: https://svnweb.freebsd.org/changeset/base/305576
Log:
Fix typo in skein amd64 assembly
Sponsored by: ScaleEngine Inc.
Modified:
head/sys/crypto/skein/amd64/skein_block_asm.s (contents, props changed)
Modified: head/sys/crypto/skein/amd64/skein_block_asm.s
==============================================================================
--- head/sys/crypto/skein/amd64/skein_block_asm.s Thu Sep 8 01:02:53 2016 (r305575)
+++ head/sys/crypto/skein/amd64/skein_block_asm.s Thu Sep 8 02:38:55 2016 (r305576)
@@ -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:
More information about the svn-src-all
mailing list