. By defining getcallerpc(x) as __builtin_return_address(0)
here, it becomes possible to use the Plan 9 compatible form
when compiling using GCC. The alternative is to add conditional
compilation based on the compiler identity in "cmd/8g/gsubr.c"
to distinguish between the two cases.
R=golang-dev
CC=golang-dev, rsc
https://golang.org/cl/
4800048
#undef _NEEDUINT
#undef _NEEDULONG
+#define getcallerpc(x) __builtin_return_address(0)
+
#ifndef SIGBUS
#define SIGBUS SIGSEGV /* close enough */
#endif