summaryrefslogtreecommitdiff
path: root/libgo/go/internal/bytealg/equal_native.go
diff options
context:
space:
mode:
Diffstat (limited to 'libgo/go/internal/bytealg/equal_native.go')
-rw-r--r--libgo/go/internal/bytealg/equal_native.go14
1 files changed, 14 insertions, 0 deletions
diff --git a/libgo/go/internal/bytealg/equal_native.go b/libgo/go/internal/bytealg/equal_native.go
new file mode 100644
index 00000000000..b5c453086c9
--- /dev/null
+++ b/libgo/go/internal/bytealg/equal_native.go
@@ -0,0 +1,14 @@
+// Copyright 2018 The Go Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style
+// license that can be found in the LICENSE file.
+
+package bytealg
+
+// Note: there's no equal_generic.go because every platform must implement at least memequal_varlen in assembly.
+
+//go:noescape
+func Equal(a, b []byte) bool
+
+// The compiler generates calls to runtime.memequal and runtime.memequal_varlen.
+// In addition, the runtime calls runtime.memequal explicitly.
+// Those functions are implemented in this package.