all: fix field names

Change-Id: I3ad7a50707486ebdbbd676b3581df6e3ed0fd3a1
Reviewed-on: https://go-review.googlesource.com/c/go/+/543476
Auto-Submit: Dmitri Shuralyov <dmitshur@golang.org>
TryBot-Result: Gopher Robot <gobot@golang.org>
Reviewed-by: Keith Randall <khr@google.com>
Reviewed-by: Keith Randall <khr@golang.org>
Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
Run-TryBot: shuang cui <imcusg@gmail.com>
This commit is contained in:
cui fliter 2023-11-18 13:51:35 +08:00 committed by Gopher Robot
parent 0c7e5d3b8d
commit 0d018b49e3
9 changed files with 13 additions and 12 deletions

View file

@ -100,10 +100,11 @@ func (d domain) String() string {
}
type pair struct {
v, w *Value // a pair of values, ordered by ID.
// a pair of values, ordered by ID.
// v can be nil, to mean the zero value.
// for booleans the zero value (v == nil) is false.
d domain
v, w *Value
d domain
}
// fact is a pair plus a relation for that pair.
@ -165,7 +166,7 @@ type factsTable struct {
facts map[pair]relation // current known set of relation
stack []fact // previous sets of relations
// order is a couple of partial order sets that record information
// order* is a couple of partial order sets that record information
// about relations between SSA values in the signed and unsigned
// domain.
orderS *poset