syscall: fix riscv64 GNU/Linux build
authorIan Lance Taylor <iant@golang.org>
Mon, 3 Feb 2020 20:29:45 +0000 (12:29 -0800)
committerIan Lance Taylor <iant@golang.org>
Tue, 4 Feb 2020 02:14:19 +0000 (18:14 -0800)
Make syscall_linux_riscv64.go, new in the 1.14beta1 release, look like
the other syscall_linux_GOARCH.go files.

Reviewed-on: https://go-review.googlesource.com/c/gofrontend/+/217577

gcc/go/gofrontend/MERGE
libgo/go/syscall/syscall_linux_riscv64.go

index 40529518b264c5777e87464437bc5de9e2c2f185..27f4ce342e54800773440a9e62c57d37b730d42c 100644 (file)
@@ -1,4 +1,4 @@
-d796680b5a78f686ed118578e81d5b1adf48508d
+c94637ad6fd38d4814fb02d094a1a73f19323d71
 
 The first line of this file holds the git revision number of the last
 merge done from the gofrontend repository.
index e9aab94e3a1f41faa495e4829a83066377a2f631..16d8709708dc3b6b24c04384dc4d8c6efe849c22 100644 (file)
@@ -4,20 +4,6 @@
 
 package syscall
 
-import "unsafe"
-
 func (r *PtraceRegs) PC() uint64 { return r.Pc }
 
 func (r *PtraceRegs) SetPC(pc uint64) { r.Pc = pc }
-
-func (iov *Iovec) SetLen(length int) {
-       iov.Len = uint64(length)
-}
-
-func (msghdr *Msghdr) SetControllen(length int) {
-       msghdr.Controllen = uint64(length)
-}
-
-func (cmsg *Cmsghdr) SetLen(length int) {
-       cmsg.Len = uint64(length)
-}