]> Cypherpunks repositories - gostls13.git/commit
cmd/compile: remove Addable flag
authorMatthew Dempsky <mdempsky@google.com>
Sat, 12 Oct 2019 23:05:34 +0000 (16:05 -0700)
committerMatthew Dempsky <mdempsky@google.com>
Sun, 13 Oct 2019 01:48:30 +0000 (01:48 +0000)
commit46be01f4e06a2ef1d2450a81dd855671eac5b855
tree5ae8cfaf51181bd997e66bad5be6bdeb9b308eec
parent9f4fb6815237f3e66057d175bd15cb167513de83
cmd/compile: remove Addable flag

This flag is supposed to indicate whether the expression is
"addressable"; but in practice, we infer this from other
attributes about the expression (e.g., n.Op and n.Class()).

Passes toolstash-check.

Change-Id: I19352ca07ab5646e232d98e8a7c1c9aec822ddd0
Reviewed-on: https://go-review.googlesource.com/c/go/+/200897
Run-TryBot: Matthew Dempsky <mdempsky@google.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
src/cmd/compile/internal/gc/dcl.go
src/cmd/compile/internal/gc/esc.go
src/cmd/compile/internal/gc/fmt.go
src/cmd/compile/internal/gc/reflect.go
src/cmd/compile/internal/gc/sinit.go
src/cmd/compile/internal/gc/ssa.go
src/cmd/compile/internal/gc/subr.go
src/cmd/compile/internal/gc/syntax.go
src/cmd/compile/internal/gc/walk.go