From: Joel Sing Date: Tue, 7 Jan 2014 12:50:31 +0000 (+1100) Subject: crypto/sha512: avoid duplicate block declaration on 386 X-Git-Tag: go1.3beta1~1040 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=9a7fb683599536af53fefba693dceff3810cdc8d;p=gostls13.git crypto/sha512: avoid duplicate block declaration on 386 Unbreak the build - we do not have a sha512 block implementation in 386 assembly (yet). R=golang-codereviews, dave CC=golang-codereviews https://golang.org/cl/48520043 --- diff --git a/src/pkg/crypto/sha512/sha512block_decl.go b/src/pkg/crypto/sha512/sha512block_decl.go index 229e46ba64..bef99de2e4 100644 --- a/src/pkg/crypto/sha512/sha512block_decl.go +++ b/src/pkg/crypto/sha512/sha512block_decl.go @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -// +build 386 amd64 +// +build amd64 package sha512