diff options
| author | Joel Sing <jsing@google.com> | 2014-01-07 23:50:31 +1100 |
|---|---|---|
| committer | Joel Sing <jsing@google.com> | 2014-01-07 23:50:31 +1100 |
| commit | 9a7fb683599536af53fefba693dceff3810cdc8d (patch) | |
| tree | c13bb11b0e54f18f4db87300c13ea673b9b02987 /src/pkg | |
| parent | f30392125192124450c2831a08416e875ab5baf0 (diff) | |
| download | go-9a7fb683599536af53fefba693dceff3810cdc8d.tar.xz | |
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
Diffstat (limited to 'src/pkg')
| -rw-r--r-- | src/pkg/crypto/sha512/sha512block_decl.go | 2 |
1 files changed, 1 insertions, 1 deletions
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 |
