From b2453c058839683cafd8a77600f2cee29cc3c668 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Cl=C3=A9ment=20Chigot?= Date: Tue, 19 Mar 2019 14:00:03 +0100 Subject: [PATCH] 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 --- src/runtime/cgo/callbacks_aix.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 2.48.1