From 9a7fb683599536af53fefba693dceff3810cdc8d Mon Sep 17 00:00:00 2001 From: Joel Sing Date: Tue, 7 Jan 2014 23:50:31 +1100 Subject: [PATCH] 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 --- src/pkg/crypto/sha512/sha512block_decl.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.48.1