1
0
mirror of https://github.com/golang/go synced 2024-10-01 09:28:37 -06:00

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

TBR=austin
CC=golang-codereviews
https://golang.org/cl/162420043
This commit is contained in:
Russ Cox 2014-10-28 23:45:01 -04:00
parent 324b293878
commit 260028fc0e

View File

@ -1764,15 +1764,13 @@ walkprint(Node *nn, NodeList **init)
Node *on;
Type *t;
int notfirst, et, op;
NodeList *calls, *intypes, *args;
NodeList *calls;
on = nil;
op = nn->op;
all = nn->list;
calls = nil;
notfirst = 0;
intypes = nil;
args = nil;
for(l=all; l; l=l->next) {
if(notfirst) {