]> Cypherpunks repositories - gostls13.git/commitdiff
cmd/compile/internal/ssa: fix a typo
authorBrad Fitzpatrick <bradfitz@golang.org>
Tue, 24 Jul 2018 23:59:48 +0000 (23:59 +0000)
committerBrad Fitzpatrick <bradfitz@golang.org>
Mon, 24 Sep 2018 22:07:18 +0000 (22:07 +0000)
Change-Id: Ie3a8c54fe5e1b94f506cc0e6f650aab441d28a75
Reviewed-on: https://go-review.googlesource.com/137115
Reviewed-by: Keith Randall <khr@golang.org>
src/cmd/compile/internal/ssa/prove.go

index af2b9ef0ed79c68a833c7d2a6396bbddafd01566..6462370d5cb14da773ca690ba240247fd14dbea4 100644 (file)
@@ -58,7 +58,7 @@ func (r relation) String() string {
 }
 
 // domain represents the domain of a variable pair in which a set
-// of relations is known.  For example, relations learned for unsigned
+// of relations is known. For example, relations learned for unsigned
 // pairs cannot be transferred to signed pairs because the same bit
 // representation can mean something else.
 type domain uint
@@ -625,7 +625,7 @@ var (
        // For example:
        //      OpLess8:   {signed, lt},
        //      v1 = (OpLess8 v2 v3).
-       // If v1 branch is taken than we learn that the rangeMaks
+       // If v1 branch is taken then we learn that the rangeMask
        // can be at most lt.
        domainRelationTable = map[Op]struct {
                d domain