summaryrefslogtreecommitdiff
path: root/vendor/github.com/minio/crc64nvme/crc64_arm64.go
diff options
context:
space:
mode:
authorLibravatar tobi <31960611+tsmethurst@users.noreply.github.com>2025-02-19 19:18:01 +0100
committerLibravatar GitHub <noreply@github.com>2025-02-19 19:18:01 +0100
commit2f5629143d632a17902934293fe00340e6898146 (patch)
tree2ba6880a34352c050fafd76f9c8b0f17ec3869b3 /vendor/github.com/minio/crc64nvme/crc64_arm64.go
parent[feature] Forward-compatibility with Approval objects (#3807) (diff)
downloadgotosocial-2f5629143d632a17902934293fe00340e6898146.tar.xz
[chore] Step minio down to 7.0.85 (#3808)
Diffstat (limited to 'vendor/github.com/minio/crc64nvme/crc64_arm64.go')
-rw-r--r--vendor/github.com/minio/crc64nvme/crc64_arm64.go15
1 files changed, 0 insertions, 15 deletions
diff --git a/vendor/github.com/minio/crc64nvme/crc64_arm64.go b/vendor/github.com/minio/crc64nvme/crc64_arm64.go
deleted file mode 100644
index c77c819ce..000000000
--- a/vendor/github.com/minio/crc64nvme/crc64_arm64.go
+++ /dev/null
@@ -1,15 +0,0 @@
-// Copyright (c) 2025 Minio Inc. All rights reserved.
-// Use of this source code is governed by a license that can be
-// found in the LICENSE file.
-
-//go:build !noasm && !appengine && !gccgo
-
-package crc64nvme
-
-import (
- "github.com/klauspost/cpuid/v2"
-)
-
-var hasAsm = cpuid.CPU.Supports(cpuid.ASIMD) && cpuid.CPU.Supports(cpuid.PMULL)
-
-func updateAsm(crc uint64, p []byte) (checksum uint64)