1
0
mirror of https://github.com/golang/go synced 2024-11-26 13:48:05 -07:00

cleanup export

R=ken
OCL=16219
CL=16219
This commit is contained in:
Russ Cox 2008-09-30 13:52:44 -07:00
parent b033c581db
commit a05c59fe91
2 changed files with 7 additions and 9 deletions

View File

@ -335,7 +335,7 @@ addmethod(Node *n, Type *t, int local)
return;
bad:
yyerror("unknown method pointer: %T %S %S", pa, sf, st);
yyerror("unknown method pointer: %T %S", pa, sf);
}
/*

View File

@ -288,7 +288,7 @@ void
dumpm(Sym *s)
{
Type *t, *f;
Dcl *back, *d1;
Dcl *back, *d;
switch(s->lexical) {
default:
@ -313,12 +313,10 @@ dumpm(Sym *s)
reexport(f->type);
Bprint(bout, "\tfunc %S %lS\n", f->sym, f->type->sym);
if(back != exportlist->back) {
// redo first pass on new entries
for(d1=back; d1!=D; d1=d1->forw) {
lineno = d1->lineno;
dumpe(d1->dsym);
}
// redo first pass on new entries
for(d=back; d!=D; d=d->forw) {
lineno = d->lineno;
dumpe(d->dsym);
}
}
}
@ -326,7 +324,7 @@ dumpm(Sym *s)
void
dumpexport(void)
{
Dcl *d, *d1;
Dcl *d;
int32 lno;
lno = lineno;