aboutsummaryrefslogtreecommitdiff
path: root/libgo/go/syscall/msan0.go
diff options
context:
space:
mode:
Diffstat (limited to 'libgo/go/syscall/msan0.go')
-rw-r--r--libgo/go/syscall/msan0.go19
1 files changed, 19 insertions, 0 deletions
diff --git a/libgo/go/syscall/msan0.go b/libgo/go/syscall/msan0.go
new file mode 100644
index 00000000000..7617494e86d
--- /dev/null
+++ b/libgo/go/syscall/msan0.go
@@ -0,0 +1,19 @@
+// Copyright 2015 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.
+
+// +build !msan
+
+package syscall
+
+import (
+ "unsafe"
+)
+
+const msanenabled = false
+
+func msanRead(addr unsafe.Pointer, len int) {
+}
+
+func msanWrite(addr unsafe.Pointer, len int) {
+}