Commit 260028fc authored by Russ Cox's avatar Russ Cox

cmd/gc: fix build - remove unused variables in walkprint

TBR=austin
CC=golang-codereviews
https://golang.org/cl/162420043
parent 324b2938
...@@ -1764,15 +1764,13 @@ walkprint(Node *nn, NodeList **init) ...@@ -1764,15 +1764,13 @@ walkprint(Node *nn, NodeList **init)
Node *on; Node *on;
Type *t; Type *t;
int notfirst, et, op; int notfirst, et, op;
NodeList *calls, *intypes, *args; NodeList *calls;
on = nil; on = nil;
op = nn->op; op = nn->op;
all = nn->list; all = nn->list;
calls = nil; calls = nil;
notfirst = 0; notfirst = 0;
intypes = nil;
args = nil;
for(l=all; l; l=l->next) { for(l=all; l; l=l->next) {
if(notfirst) { if(notfirst) {
......
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