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
diff --git a/go/ssa/builder.go b/go/ssa/builder.go
index 12c3149..5caa135 100644
--- a/go/ssa/builder.go
+++ b/go/ssa/builder.go
@@ -972,8 +972,6 @@
 		} 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))