mirror of
https://github.com/golang/go
synced 2024-11-19 02:04:42 -07: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:
parent
324b293878
commit
260028fc0e
@ -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) {
|
||||||
|
Loading…
Reference in New Issue
Block a user