Commit 209b2e55 authored by Ian Lance Taylor's avatar Ian Lance Taylor

cmd/gc: fix comment typo, assignment spacing

R=bradfitz, gri, lvd
CC=golang-dev
https://golang.org/cl/5874053
parent 47b6197a
......@@ -2358,10 +2358,10 @@ append(Node *n, NodeList **init)
walkexprlistsafe(n->list, init);
// walkexprlistsafe will leave OINDEX (s[n]) along if both s
// walkexprlistsafe will leave OINDEX (s[n]) alone if both s
// and n are name or literal, but those may index the slice we're
// modifying here. Fix explicitly.
for(l = n->list; l; l=l->next)
for(l=n->list; l; l=l->next)
l->n = cheapexpr(l->n, init);
nsrc = n->list->n;
......
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