]> Cypherpunks repositories - gostls13.git/commitdiff
runtime: fix vet warning about +build rule
authorMatthew Dempsky <mdempsky@google.com>
Thu, 12 Nov 2015 04:47:25 +0000 (20:47 -0800)
committerMatthew Dempsky <mdempsky@google.com>
Thu, 12 Nov 2015 05:13:47 +0000 (05:13 +0000)
cgo_ppc64x.go:7: +build comment must appear before package clause and be followed by a blank line

Change-Id: Ib6dedddae70cc75dc3f137eb37ea338a64f8b595
Reviewed-on: https://go-review.googlesource.com/16835
Run-TryBot: Matthew Dempsky <mdempsky@google.com>
Reviewed-by: Andrew Gerrand <adg@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>

src/runtime/cgo_ppc64x.go

index cbc6c41d7323f4c7cd5d76f3561aea8c240545bc..6a1b3bb417200b70270dd6efc672da5545d171be 100644 (file)
@@ -2,10 +2,10 @@
 // Use of this source code is governed by a BSD-style
 // license that can be found in the LICENSE file.
 
-package runtime
-
 // +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.