Prog *ptxt;
int32 lno;
Type *t;
+ Iter save;
if(newproc == N) {
newproc = nod(ONAME, N, N);
if(curfn->type->outnamed) {
// add clearing of the output parameters
- t = structfirst(&pl, getoutarg(curfn->type));
+ t = structfirst(&save, getoutarg(curfn->type));
while(t != T) {
if(t->nname != N && t->nname->sym->name[0] != '_') {
curfn->nbody = list(nod(OAS, t->nname, N), curfn->nbody);
}
- t = structnext(&pl);
+ t = structnext(&save);
}
}
"nil", LNIL, Txxx,
"package", LPACKAGE, Txxx,
"panic", LPANIC, Txxx,
- "panicn", LPANICN, Txxx,
+ "panicln", LPANICN, Txxx,
"print", LPRINT, Txxx,
- "printn", LPRINTN, Txxx,
+ "println", LPRINTN, Txxx,
"range", LRANGE, Txxx,
"return", LRETURN, Txxx,
"select", LSELECT, Txxx,