Source file src/cmd/compile/internal/ssa/ssaconfig/compile.go
1 // Copyright 2015 The Go Authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style 3 // license that can be found in the LICENSE file. 4 5 package ssaconfig 6 7 // Debug output 8 var IntrinsicsDebug int 9 10 var IntrinsicsDisable bool 11 12 var BuildDebug int 13 14 var BuildTest int 15 16 var BuildStats int 17 18 var BuildDump map[string]bool = make(map[string]bool) // names of functions to dump after initial build of ssa 19 20 var GenssaDump map[string]bool = make(map[string]bool) // names of functions to dump after ssa has been converted to asm 21