From 2e7706d1fa50edd1bc9fa6a4d1eeb58d10fa2536 Mon Sep 17 00:00:00 2001 From: soolaugust Date: Mon, 12 Oct 2020 07:13:18 +0000 Subject: [PATCH] ssa: comment Sdom() with the form "Sdom..." Change-Id: I7ddb3d178e5437a7c3d8e94a089ac7a476a7dc85 GitHub-Last-Rev: bc27289128079f294ec149ccc4539ad29b859c9f GitHub-Pull-Request: golang/go#41925 Reviewed-on: https://go-review.googlesource.com/c/go/+/261437 Trust: Alberto Donizetti Reviewed-by: Keith Randall --- src/cmd/compile/internal/ssa/func.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cmd/compile/internal/ssa/func.go b/src/cmd/compile/internal/ssa/func.go index 0df7b4a5d7..ec2c67c1fa 100644 --- a/src/cmd/compile/internal/ssa/func.go +++ b/src/cmd/compile/internal/ssa/func.go @@ -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 {