diff options
author | Ian Lance Taylor <iant@golang.org> | 2020-08-03 11:01:00 -0700 |
---|---|---|
committer | Ian Lance Taylor <iant@golang.org> | 2020-08-03 11:03:40 -0700 |
commit | 76eb0434a40f44f3f9c8a81cf22f56bbeccad12a (patch) | |
tree | 4de4bb9411d053d2136641575d68dc0230daf81d | |
parent | d8ea6acb5f586aabbde0dc18ca3c2f3aced45a49 (diff) | |
download | gcc-76eb0434a40f44f3f9c8a81cf22f56bbeccad12a.zip gcc-76eb0434a40f44f3f9c8a81cf22f56bbeccad12a.tar.gz gcc-76eb0434a40f44f3f9c8a81cf22f56bbeccad12a.tar.bz2 |
internal/syscall/unix: correct ia64 syscall numbers
Per Andreas Schwab.
Reviewed-on: https://go-review.googlesource.com/c/gofrontend/+/246264
-rw-r--r-- | gcc/go/gofrontend/MERGE | 2 | ||||
-rw-r--r-- | libgo/go/internal/syscall/unix/sysnum_linux_ia64.go | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/gcc/go/gofrontend/MERGE b/gcc/go/gofrontend/MERGE index 3984952..0bc8e1b 100644 --- a/gcc/go/gofrontend/MERGE +++ b/gcc/go/gofrontend/MERGE @@ -1,4 +1,4 @@ -82a0db12bcb205748a5319b03e070d5502246ba7 +7f0d3834ac40cf3bcbeb9b13926ab5ccb2523537 The first line of this file holds the git revision number of the last merge done from the gofrontend repository. diff --git a/libgo/go/internal/syscall/unix/sysnum_linux_ia64.go b/libgo/go/internal/syscall/unix/sysnum_linux_ia64.go index bb7c363..6a5d0c9 100644 --- a/libgo/go/internal/syscall/unix/sysnum_linux_ia64.go +++ b/libgo/go/internal/syscall/unix/sysnum_linux_ia64.go @@ -5,6 +5,6 @@ package unix const ( - getrandomTrap uintptr = 315 - copyFileRangeTrap uintptr = 323 + getrandomTrap uintptr = 1339 + copyFileRangeTrap uintptr = 1347 ) |