]> Cypherpunks repositories - gostls13.git/commit
cmd/compile: replace misleading variable name
authorMartin Möhrmann <moehrmann@google.com>
Sun, 21 Jan 2018 09:25:07 +0000 (10:25 +0100)
committerMartin Möhrmann <moehrmann@google.com>
Sat, 17 Feb 2018 15:28:55 +0000 (15:28 +0000)
commit284a4a734662b3c1a93f993ef55c8c2f42513c06
tree549332b003b4346120edddbecbb2385c7f29998e
parentf4bb25c937cffb277e5ba87708d286ea7fd1b6ed
cmd/compile: replace misleading variable name

One of the variables declared in cleantempnopop named 'kill'
does not hold a OVARKILL node but an OVARLIVE node.
Rename that variable to 'live' to differentiate it from the other
variable named kill that holds a OVARKILL node.

Passes toolstash -cmp.

Change-Id: I34c8729e5c303b8cdabe44c9af980d4f16000e4b
Reviewed-on: https://go-review.googlesource.com/88816
Run-TryBot: Martin Möhrmann <moehrmann@google.com>
Reviewed-by: Daniel Martí <mvdan@mvdan.cc>
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
src/cmd/compile/internal/gc/order.go