diff options
author | 2025-02-19 19:18:01 +0100 | |
---|---|---|
committer | 2025-02-19 19:18:01 +0100 | |
commit | 2f5629143d632a17902934293fe00340e6898146 (patch) | |
tree | 2ba6880a34352c050fafd76f9c8b0f17ec3869b3 /vendor/github.com/minio/crc64nvme/crc64_arm64.go | |
parent | [feature] Forward-compatibility with Approval objects (#3807) (diff) | |
download | gotosocial-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.go | 15 |
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) |