Skip to content

Commit 0ee8a55

Browse files
committed
cmd/compile/internal/ssa: fix a typo
Change-Id: Ie3a8c54fe5e1b94f506cc0e6f650aab441d28a75 Reviewed-on: https://go-review.googlesource.com/137115 Reviewed-by: Keith Randall <[email protected]>
1 parent 8c1c670 commit 0ee8a55

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/cmd/compile/internal/ssa/prove.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ func (r relation) String() string {
5858
}
5959

6060
// domain represents the domain of a variable pair in which a set
61-
// of relations is known. For example, relations learned for unsigned
61+
// of relations is known. For example, relations learned for unsigned
6262
// pairs cannot be transferred to signed pairs because the same bit
6363
// representation can mean something else.
6464
type domain uint
@@ -625,7 +625,7 @@ var (
625625
// For example:
626626
// OpLess8: {signed, lt},
627627
// v1 = (OpLess8 v2 v3).
628-
// If v1 branch is taken than we learn that the rangeMaks
628+
// If v1 branch is taken then we learn that the rangeMask
629629
// can be at most lt.
630630
domainRelationTable = map[Op]struct {
631631
d domain

0 commit comments

Comments
 (0)