]> Cypherpunks repositories - gostls13.git/commit
cmd/internal/gc: drop unused Reslice field from Node
authorRuss Cox <rsc@golang.org>
Wed, 6 May 2015 16:25:56 +0000 (12:25 -0400)
committerRuss Cox <rsc@golang.org>
Mon, 11 May 2015 15:22:26 +0000 (15:22 +0000)
commitdcf6e20606bb7e3920fef186d87e69742f7986fb
tree28aac0937d827661a354a6aa1fd4733a374a2ebe
parentc70b4b5f7e419214c8c61ba5306b569fbab7dc30
cmd/internal/gc: drop unused Reslice field from Node

Dead code.

This field is left over from Go 1.4, when we elided the fake write
barrier in this case. Today, it's unused (always false).
The upcoming append/slice changes handle this case again,
but without needing this field.

Change-Id: Ic6f160b64efdc1bbed02097ee03050f8cd0ab1b8
Reviewed-on: https://go-review.googlesource.com/9789
Reviewed-by: David Chase <drchase@google.com>
src/cmd/internal/gc/syntax.go
src/cmd/internal/gc/typecheck.go
src/cmd/internal/gc/walk.go