]> Cypherpunks repositories - gostls13.git/commit
cmd/compile/internal/gc: replace Node.Ullman with Node.HasCall
authorMatthew Dempsky <mdempsky@google.com>
Fri, 3 Mar 2017 21:38:49 +0000 (13:38 -0800)
committerMatthew Dempsky <mdempsky@google.com>
Fri, 3 Mar 2017 22:35:44 +0000 (22:35 +0000)
commit870d079c76ffd3766fb336a4071ae273867761d1
treef858d5345e95f03fb236e8e2478e5e8ae4c8040c
parent9fd359a29a8cc55ed665542d2a3fe9fef8baaa7d
cmd/compile/internal/gc: replace Node.Ullman with Node.HasCall

Since switching to SSA, the only remaining use for the Ullman field
was in tracking whether or not an expression contained a function
call. Give it a new name and encode it in our fancy new bitset field.

Passes toolstash-check.

Change-Id: I95b7f9cb053856320c0d66efe14996667e6011c2
Reviewed-on: https://go-review.googlesource.com/37721
Run-TryBot: Matthew Dempsky <mdempsky@google.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Josh Bleecher Snyder <josharian@gmail.com>
src/cmd/compile/internal/gc/bitset.go
src/cmd/compile/internal/gc/closure.go
src/cmd/compile/internal/gc/dcl.go
src/cmd/compile/internal/gc/fmt.go
src/cmd/compile/internal/gc/gen.go
src/cmd/compile/internal/gc/racewalk.go
src/cmd/compile/internal/gc/reflect.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