]> Cypherpunks repositories - gostls13.git/commit
[dev.regabi] cmd/compile: cleanup for concrete types - const
authorRuss Cox <rsc@golang.org>
Thu, 10 Dec 2020 23:46:56 +0000 (18:46 -0500)
committerRuss Cox <rsc@golang.org>
Thu, 17 Dec 2020 04:43:27 +0000 (04:43 +0000)
commit42fec2ded44a1bedf739dbc2b33f1b144616ec4c
tree683e73b046cd48019eeedd7542a023e9f6eac652
parent389ae3d5ba24ffec3df63e7e6704d813efc3d719
[dev.regabi] cmd/compile: cleanup for concrete types - const

An automated rewrite will add concrete type assertions after
a test of n.Op(), when n can be safely type-asserted
(meaning, n is not reassigned a different type, n is not reassigned
and then used outside the scope of the type assertion,
and so on).

This sequence of CLs handles the code that the automated
rewrite does not: adding specific types to function arguments,
adjusting code not to call n.Left() etc when n may have multiple
representations, and so on.

This CL focuses on const.go.

Passes buildall w/ toolstash -cmp.

Change-Id: I824f18fa0344ddde56df0522f9fa5e237114bbe2
Reviewed-on: https://go-review.googlesource.com/c/go/+/277927
Trust: Russ Cox <rsc@golang.org>
Reviewed-by: Matthew Dempsky <mdempsky@google.com>
src/cmd/compile/internal/gc/const.go