diff options
| author | Tamir Duberstein <tamird@google.com> | 2020-11-13 09:41:55 -0500 |
|---|---|---|
| committer | Filippo Valsorda <filippo@golang.org> | 2020-12-03 16:30:18 +0000 |
| commit | be400aefbc4c83e9aab51e82b8d4b12760653b47 (patch) | |
| tree | 26c94f9f114e30067c05e9d7b0fea47c8c6a8289 /argon2 | |
| parent | c8d3bf9c5392d5f66747f112cd55055d7a530b19 (diff) | |
| download | go-x-crypto-be400aefbc4c83e9aab51e82b8d4b12760653b47.tar.xz | |
all: build tags: appengine,!gccgo => purego,gc
appengine is obsolete and superseded by purego, and gc is a more
precise tag for files that use gc-syntax assembly.
Change-Id: I716f59de772ebeee4adf4d2a432edf300122cef0
Reviewed-on: https://go-review.googlesource.com/c/crypto/+/269920
Trust: Ian Lance Taylor <iant@golang.org>
Run-TryBot: Filippo Valsorda <filippo@golang.org>
TryBot-Result: Go Bot <gobot@golang.org>
Reviewed-by: Filippo Valsorda <filippo@golang.org>
Diffstat (limited to 'argon2')
| -rw-r--r-- | argon2/blamka_amd64.go | 2 | ||||
| -rw-r--r-- | argon2/blamka_amd64.s | 2 | ||||
| -rw-r--r-- | argon2/blamka_ref.go | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/argon2/blamka_amd64.go b/argon2/blamka_amd64.go index 2fc1ec0..1108e11 100644 --- a/argon2/blamka_amd64.go +++ b/argon2/blamka_amd64.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 amd64,!gccgo,!appengine +// +build amd64,gc,!purego package argon2 diff --git a/argon2/blamka_amd64.s b/argon2/blamka_amd64.s index 74a6e73..c4c84f0 100644 --- a/argon2/blamka_amd64.s +++ b/argon2/blamka_amd64.s @@ -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 amd64,!gccgo,!appengine +// +build amd64,gc,!purego #include "textflag.h" diff --git a/argon2/blamka_ref.go b/argon2/blamka_ref.go index baf7b55..4a963c7 100644 --- a/argon2/blamka_ref.go +++ b/argon2/blamka_ref.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 !amd64 appengine gccgo +// +build !amd64 purego !gc package argon2 |
