Commit 2350ca5a authored by Ian Lance Taylor's avatar Ian Lance Taylor

cmd/compile: remove useless declaration of llit

Accidentally added in https://golang.org/cl/20242.

This is in preparation for transformation by an automated tool.

Passes toolstash -cmp.

Update #14473.

Change-Id: I28c637d220df3ccaa8e368bfbea7282a6e66662e
Reviewed-on: https://go-review.googlesource.com/20402
Run-TryBot: Ian Lance Taylor <iant@golang.org>
Reviewed-by: 's avatarBrad Fitzpatrick <bradfitz@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
parent 0c7ccbf6
......@@ -3338,9 +3338,8 @@ func typecheckas2(n *Node) {
var r *Node
if cl == cr {
// easy
llit := nodeSeqIterate(n.List)
lrit := nodeSeqIterate(n.Rlist)
for llit = nodeSeqIterate(n.List); !llit.Done(); llit.Next() {
for llit := nodeSeqIterate(n.List); !llit.Done(); llit.Next() {
if llit.N().Type != nil && lrit.N().Type != nil {
*lrit.P() = assignconv(lrit.N(), llit.N().Type, "assignment")
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment