Date: Thu, 8 Sep 2016 02:38:55 +0000 (UTC) From: Allan Jude <allanjude@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r305576 - head/sys/crypto/skein/amd64 Message-ID: <201609080238.u882ctwf001155@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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:
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201609080238.u882ctwf001155>