Commit a05c59fe authored by Russ Cox's avatar Russ Cox

cleanup export

R=ken
OCL=16219
CL=16219
parent b033c581
......@@ -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);
}
/*
......
......@@ -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;
......
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