From: guoguangwu Date: Tue, 19 Mar 2024 07:04:15 +0000 (+0000) Subject: cmd/compile: fix typo in comment X-Git-Tag: go1.23rc1~834 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=a73af5d91c4c335fb44ae99517d4c41d5f3960e0;p=gostls13.git cmd/compile: fix typo in comment Change-Id: I0bbc74fdab9bc295d42ae7e346d33db8df52c797 GitHub-Last-Rev: fe2b7d1efeeb8cf6ccffe5419da5a55a4cbdbb43 GitHub-Pull-Request: golang/go#66397 Reviewed-on: https://go-review.googlesource.com/c/go/+/572616 Auto-Submit: Keith Randall Reviewed-by: Keith Randall Reviewed-by: Keith Randall Reviewed-by: Robert Griesemer LUCI-TryBot-Result: Go LUCI --- diff --git a/src/cmd/compile/internal/ssagen/ssa.go b/src/cmd/compile/internal/ssagen/ssa.go index 2e3ad3232b..06180f8dea 100644 --- a/src/cmd/compile/internal/ssagen/ssa.go +++ b/src/cmd/compile/internal/ssagen/ssa.go @@ -3152,7 +3152,7 @@ func (s *state) exprCheckPtr(n ir.Node, checkPtrOK bool) *ssa.Value { // In theory, we should set b.Likely here based on context. // However, gc only gives us likeliness hints // in a single place, for plain OIF statements, - // and passing around context is finnicky, so don't bother for now. + // and passing around context is finicky, so don't bother for now. bRight := s.f.NewBlock(ssa.BlockPlain) bResult := s.f.NewBlock(ssa.BlockPlain)