mirror of
https://github.com/golang/go
synced 2024-11-18 19:44:46 -07:00
go/ssa: fix some incorrect comments
Change-Id: I8aa4780e0fa4a182678f1d34b247ab203e906144 Reviewed-on: https://go-review.googlesource.com/119915 Reviewed-by: Alan Donovan <adonovan@google.com>
This commit is contained in:
parent
fcb3cb6c24
commit
25b95b4822
@ -547,8 +547,8 @@ type BinOp struct {
|
||||
register
|
||||
// One of:
|
||||
// ADD SUB MUL QUO REM + - * / %
|
||||
// AND OR XOR SHL SHR AND_NOT & | ^ << >> &~
|
||||
// EQL LSS GTR NEQ LEQ GEQ == != < <= < >=
|
||||
// AND OR XOR SHL SHR AND_NOT & | ^ << >> &^
|
||||
// EQL NEQ LSS LEQ GTR GEQ == != < <= < >=
|
||||
Op token.Token
|
||||
X, Y Value
|
||||
}
|
||||
@ -788,7 +788,7 @@ type Slice struct {
|
||||
type FieldAddr struct {
|
||||
register
|
||||
X Value // *struct
|
||||
Field int // index into X.Type().Deref().(*types.Struct).Fields
|
||||
Field int // field is X.Type().Underlying().(*types.Pointer).Elem().Underlying().(*types.Struct).Field(Field)
|
||||
}
|
||||
|
||||
// The Field instruction yields the Field of struct X.
|
||||
|
Loading…
Reference in New Issue
Block a user