mirror of
https://github.com/golang/go
synced 2024-11-06 09:36:16 -07:00
9839668b56
A future change to gofmt will rewrite // Doc comment. //go:foo to // Doc comment. // //go:foo Apply that change preemptively to all comments (not necessarily just doc comments). For #51082. Change-Id: Iffe0285418d1e79d34526af3520b415a12203ca9 Reviewed-on: https://go-review.googlesource.com/c/go/+/384260 Trust: Russ Cox <rsc@golang.org> Run-TryBot: Russ Cox <rsc@golang.org> Reviewed-by: Ian Lance Taylor <iant@golang.org> TryBot-Result: Gopher Robot <gobot@golang.org>
14 lines
418 B
Go
14 lines
418 B
Go
// Copyright 2015 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
//go:build ppc64 || ppc64le
|
|
|
|
package runtime
|
|
|
|
// crosscall_ppc64 calls into the runtime to set up the registers the
|
|
// Go runtime expects and so the symbol it calls needs to be exported
|
|
// for external linking to work.
|
|
//
|
|
//go:cgo_export_static _cgo_reginit
|