We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 566f3e2 commit 0a53153Copy full SHA for 0a53153
crc64_amd64.s
@@ -2,6 +2,8 @@
2
// Use of this source code is governed by a license that can be
3
// found in the LICENSE file.
4
5
+//go:build !noasm && !appengine && !gccgo
6
+
7
#include "textflag.h"
8
9
TEXT ·updateAsm(SB), $0-40
crc64_arm64.s
crc64_other.go
@@ -7,3 +7,5 @@
package crc64nvme
var hasAsm = false
10
11
+func updateAsm(crc uint64, p []byte) (checksum uint64) { panic("should not be reached") }
0 commit comments