go.tools/go/ssa: remove obsolete comment.

This was a cryptic prediction of the bug you fixed. :)

LGTM=pcc
R=pcc
CC=golang-codereviews
https://golang.org/cl/103470048
This commit is contained in:
Alan Donovan 2014-06-18 18:00:03 -04:00
parent 4aa650cf80
commit f4ab48cb83
1 changed files with 0 additions and 2 deletions

View File

@ -972,8 +972,6 @@ func (b *builder) assignStmt(fn *Function, lhss, rhss []ast.Expr, isDef bool) {
} else {
// Parallel assignment. All reads must occur
// before all updates, precluding exprInPlace.
// TODO(adonovan): opt: is it sound to
// perform exprInPlace if !isDef?
var rvals []Value
for _, rval := range rhss {
rvals = append(rvals, b.expr(fn, rval))