diff options
| author | Sebastiaan van Stijn <github@gone.nl> | 2022-11-06 16:20:46 +0000 |
|---|---|---|
| committer | Gopher Robot <gobot@golang.org> | 2023-09-28 17:58:46 +0000 |
| commit | ec07f4e35b9ef2fcfd790dd9437ef46bd64b3a4b (patch) | |
| tree | 758739e5367d2e248fe3da87181308a4f2e6a900 /chacha20/chacha_arm64.s | |
| parent | b665ba6f6f9abc2ab124f8ec2cb44de0e44ce077 (diff) | |
| download | go-x-crypto-ec07f4e35b9ef2fcfd790dd9437ef46bd64b3a4b.tar.xz | |
chacha20: drop Go 1.10 compatibility for arm64
Other packages already dropped compatibility with go < 1.12, so it should be safe to remove it for this package as well.
Change-Id: Ib1424763e3aa94d0187a667ebee058100136f53b
GitHub-Last-Rev: 51df9690a5f37ba50d5ae5e84cf31b78fb6c5cd8
GitHub-Pull-Request: golang/crypto#241
Reviewed-on: https://go-review.googlesource.com/c/crypto/+/448241
Reviewed-by: Roland Shoemaker <roland@golang.org>
Auto-Submit: Filippo Valsorda <filippo@golang.org>
Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
Reviewed-by: Than McIntosh <thanm@google.com>
TryBot-Result: Gopher Robot <gobot@golang.org>
Run-TryBot: Roland Shoemaker <roland@golang.org>
Reviewed-by: Filippo Valsorda <filippo@golang.org>
Reviewed-by: Joedian Reid <joedian@golang.org>
Diffstat (limited to 'chacha20/chacha_arm64.s')
| -rw-r--r-- | chacha20/chacha_arm64.s | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chacha20/chacha_arm64.s b/chacha20/chacha_arm64.s index 63cae9e..f1f6623 100644 --- a/chacha20/chacha_arm64.s +++ b/chacha20/chacha_arm64.s @@ -2,8 +2,8 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -//go:build go1.11 && gc && !purego -// +build go1.11,gc,!purego +//go:build gc && !purego +// +build gc,!purego #include "textflag.h" |
