]> Cypherpunks repositories - gostls13.git/commitdiff
cmd/compile/internal/ssa: hide gen packge from ./make.bash
authorDave Cheney <dave@cheney.net>
Tue, 5 Apr 2016 05:11:08 +0000 (15:11 +1000)
committerDave Cheney <dave@cheney.net>
Tue, 5 Apr 2016 05:53:15 +0000 (05:53 +0000)
Fixes #15122

Change-Id: Ie2c802d78aea731e25bf4b193b3c2e4c884e0573
Reviewed-on: https://go-review.googlesource.com/21524
Run-TryBot: Dave Cheney <dave@cheney.net>
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>

src/cmd/compile/internal/ssa/gen/AMD64Ops.go
src/cmd/compile/internal/ssa/gen/ARMOps.go
src/cmd/compile/internal/ssa/gen/decOps.go
src/cmd/compile/internal/ssa/gen/genericOps.go
src/cmd/compile/internal/ssa/gen/main.go
src/cmd/compile/internal/ssa/gen/rulegen.go

index 4bdaf5fda6b1a3a0b7785de22ea6bea283a2bc93..b1698c0cf16afee96629ee860f30a880cea24df8 100644 (file)
@@ -2,6 +2,8 @@
 // Use of this source code is governed by a BSD-style
 // license that can be found in the LICENSE file.
 
+// +build ignore
+
 package main
 
 import "strings"
index 2b2a750ebc331a7fe9675779467375a0b0956db3..a4f7b17e8756bc91ab0517fcb531b6926bec3289 100644 (file)
@@ -2,6 +2,8 @@
 // Use of this source code is governed by a BSD-style
 // license that can be found in the LICENSE file.
 
+// +build ignore
+
 package main
 
 func init() {
index 0cc11cb4c0f78c095a46b8e02dd4aa9d05deafde..b826481c9fbb2fdcb90b41742d66561f88a64014 100644 (file)
@@ -2,6 +2,8 @@
 // Use of this source code is governed by a BSD-style
 // license that can be found in the LICENSE file.
 
+// +build ignore
+
 package main
 
 var decOps = []opData{}
index d8632a92cd8dd65ee1c3ec5ed030f1b8b6b240b1..e6a0e8355b3d74252cc211979a082ddfb4366e6b 100644 (file)
@@ -2,6 +2,8 @@
 // Use of this source code is governed by a BSD-style
 // license that can be found in the LICENSE file.
 
+// +build ignore
+
 package main
 
 // Generic opcodes typically specify a width. The inputs and outputs
index 5e681b630191e62ca1870d7d0acaf5d963311a22..db3c43d3a3031cdb18c08aca04d6ccbd00210431 100644 (file)
@@ -2,9 +2,10 @@
 // Use of this source code is governed by a BSD-style
 // license that can be found in the LICENSE file.
 
+// +build ignore
+
 // The gen command generates Go code (in the parent directory) for all
 // the architecture-specific opcodes, blocks, and rewrites.
-
 package main
 
 import (
index d01fb03745655739764ac92efb039bef6c316ef5..b40f480f3efc202a1a72059be7a01eb30bac38f2 100644 (file)
@@ -2,6 +2,8 @@
 // Use of this source code is governed by a BSD-style
 // license that can be found in the LICENSE file.
 
+// +build gen
+
 // This program generates Go code that applies rewrite rules to a Value.
 // The generated code implements a function of type func (v *Value) bool
 // which returns true iff if did something.