diff options
author | Ian Lance Taylor <iant@golang.org> | 2020-02-03 12:29:45 -0800 |
---|---|---|
committer | Ian Lance Taylor <iant@golang.org> | 2020-02-03 18:14:19 -0800 |
commit | 79530f94e9c53153c4fae3b50a8c938f89db0c32 (patch) | |
tree | 2768f12080efc455e55a8baf73afb6cca426979e /libgo/go/syscall | |
parent | 628ee3c2f339da37e7570bcce0ebc6eb12bc33ae (diff) | |
download | gcc-79530f94e9c53153c4fae3b50a8c938f89db0c32.tar.gz |
syscall: fix riscv64 GNU/Linux build
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
Diffstat (limited to 'libgo/go/syscall')
-rw-r--r-- | libgo/go/syscall/syscall_linux_riscv64.go | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/libgo/go/syscall/syscall_linux_riscv64.go b/libgo/go/syscall/syscall_linux_riscv64.go index e9aab94e3a1..16d8709708d 100644 --- a/libgo/go/syscall/syscall_linux_riscv64.go +++ b/libgo/go/syscall/syscall_linux_riscv64.go @@ -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) -} |