aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorsoolaugust <soolaugust@gmail.com>2020-10-12 07:13:18 +0000
committerKeith Randall <khr@golang.org>2020-10-12 15:38:05 +0000
commit2e7706d1fa50edd1bc9fa6a4d1eeb58d10fa2536 (patch)
tree22e6334f566261e478a28cf4687ff99e921c17d4 /src
parent0f53453b32054b681dac6e8b025c85a785396102 (diff)
downloadgo-2e7706d1fa50edd1bc9fa6a4d1eeb58d10fa2536.tar.xz
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 <alb.donizetti@gmail.com> Reviewed-by: Keith Randall <khr@golang.org>
Diffstat (limited to 'src')
-rw-r--r--src/cmd/compile/internal/ssa/func.go2
1 files changed, 1 insertions, 1 deletions
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 {