From: Ian Lance Taylor Date: Mon, 3 Aug 2020 18:01:00 +0000 (-0700) Subject: internal/syscall/unix: correct ia64 syscall numbers X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=76cfc81b30d03bca5a8dbcbcbefc1ae8d1237735;p=thirdparty%2Fgcc.git internal/syscall/unix: correct ia64 syscall numbers Per Andreas Schwab. Reviewed-on: https://go-review.googlesource.com/c/gofrontend/+/246264 --- diff --git a/gcc/go/gofrontend/MERGE b/gcc/go/gofrontend/MERGE index 39849522124a..0bc8e1b5a59a 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 bb7c363cdc21..6a5d0c90fbe9 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 )