File tree 1 file changed +21
-0
lines changed
gopls/internal/telemetry/cmd/stacks
1 file changed +21
-0
lines changed Original file line number Diff line number Diff line change @@ -145,6 +145,27 @@ var programs = map[string]ProgramConfig{
145
145
"internal/util/bug." ,
146
146
},
147
147
},
148
+ "cmd/compile" : {
149
+ Program : "cmd/compile" ,
150
+ SearchLabel : "compiler/telemetry-wins" ,
151
+ NewIssuePrefix : "cmd/compile" ,
152
+ NewIssueLabels : []string {
153
+ "compiler/runtime" ,
154
+ "compiler/telemetry-wins" ,
155
+ "NeedsInvestigation" ,
156
+ },
157
+ MatchSymbolPrefix : "cmd/compile" ,
158
+ IgnoreSymbolContains : []string {
159
+ // Various "fatal" wrappers.
160
+ "Fatal" , // base.Fatal*, ssa.Value.Fatal*, etc.
161
+ "cmd/compile/internal/base.Assert" ,
162
+ "cmd/compile/internal/noder.assert" ,
163
+ "cmd/compile/internal/ssa.Compile.func1" , // basically a Fatalf wrapper.
164
+ // Panic recovery.
165
+ "cmd/compile/internal/types2.(*Checker).handleBailout" ,
166
+ "cmd/compile/internal/gc.handlePanic" ,
167
+ },
168
+ },
148
169
}
149
170
150
171
func main () {
You can’t perform that action at this time.
0 commit comments