From: Clément Chigot Date: Tue, 19 Mar 2019 13:00:03 +0000 (+0100) Subject: runtime/cgo: correct cgo_export directives in callbacks_aix.go X-Git-Tag: go1.13beta1~983 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=b2453c058839683cafd8a77600f2cee29cc3c668;p=gostls13.git runtime/cgo: correct cgo_export directives in callbacks_aix.go This commit removes spaces which were wrongly added in //go:cgo_export_static during CL 164010. Change-Id: Iadd18efdde9ff32e907d793a72ef0f9efda35fe6 Reviewed-on: https://go-review.googlesource.com/c/go/+/168317 Run-TryBot: Tobias Klauser TryBot-Result: Gobot Gobot Reviewed-by: Ian Lance Taylor --- diff --git a/src/runtime/cgo/callbacks_aix.go b/src/runtime/cgo/callbacks_aix.go index 26654931da..7dafb6b310 100644 --- a/src/runtime/cgo/callbacks_aix.go +++ b/src/runtime/cgo/callbacks_aix.go @@ -6,5 +6,5 @@ package cgo // These functions must be exported in order to perform // longcall on cgo programs (cf gcc_aix_ppc64.c). -// go:cgo_export_static __cgo_topofstack -// go:cgo_export_static runtime.rt0_go +//go:cgo_export_static __cgo_topofstack +//go:cgo_export_static runtime.rt0_go