runtime: use correct types in __go_ptrace shim
authorNikhil Benesch <nikhil.benesch@gmail.com>
Wed, 14 Oct 2020 19:02:12 +0000 (19:02 +0000)
committerIan Lance Taylor <iant@golang.org>
Thu, 15 Oct 2020 20:36:08 +0000 (13:36 -0700)
Make the types of the addr and data arguments in the __go_ptrace shim
match the types declared in Go and the types declared by the C ptrace
function, i.e., void*. This avoids a warning about an implicit
int-to-pointer cast on some platforms.

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

gcc/go/gofrontend/MERGE
libgo/runtime/go-varargs.c

index a7e6a7257f0d7a27d0fab71af77b2473d596d3d5..53551030eae0d78514f43e73af8227a639dde4df 100644 (file)
@@ -1,4 +1,4 @@
-d36e74c7a1aa94fc5cf393dc705b8a1271cb01c7
+71e161daafa1e19c2c53e28fffc3954d88a4cdb2
 
 The first line of this file holds the git revision number of the last
 merge done from the gofrontend repository.
index 9cb4a7e79bd243a8076ddbb7c74df5536b814ad8..d8f7dc55ea4125fac8dda30715ce17fe7f072604 100644 (file)
@@ -122,7 +122,7 @@ __go_syscall6(uintptr_t flag, uintptr_t a1, uintptr_t a2, uintptr_t a3,
 // a variadic function within glibc.
 
 long
-__go_ptrace(int request, pid_t pid, uintptr_t addr, uintptr_t data)
+__go_ptrace(int request, pid_t pid, void *addr, void *data)
 {
   return ptrace (request, pid, addr, data);
 }