1
0
mirror of https://github.com/golang/go synced 2024-09-29 12:24:31 -06:00

ssa: comment Sdom() with the form "Sdom..."

Change-Id: I7ddb3d178e5437a7c3d8e94a089ac7a476a7dc85
GitHub-Last-Rev: bc27289128
GitHub-Pull-Request: golang/go#41925
Reviewed-on: https://go-review.googlesource.com/c/go/+/261437
Trust: Alberto Donizetti <alb.donizetti@gmail.com>
Reviewed-by: Keith Randall <khr@golang.org>
This commit is contained in:
soolaugust 2020-10-12 07:13:18 +00:00 committed by Keith Randall
parent 0f53453b32
commit 2e7706d1fa

View File

@ -672,7 +672,7 @@ func (f *Func) Idom() []*Block {
return f.cachedIdom
}
// sdom returns a sparse tree representing the dominator relationships
// Sdom returns a sparse tree representing the dominator relationships
// among the blocks of f.
func (f *Func) Sdom() SparseTree {
if f.cachedSdom == nil {