diff --git a/src/cmd/6g/cgen.c b/src/cmd/6g/cgen.c index e1b5d1140ee..72ab0857e9f 100644 --- a/src/cmd/6g/cgen.c +++ b/src/cmd/6g/cgen.c @@ -1389,11 +1389,11 @@ sgen(Node *n, Node *ns, int64 w) if(n->ullman >= ns->ullman) { agenr(n, &nodr, N); - if(ns->op == ONAME && ns->class != PEXTERN) + if(ns->op == ONAME) gvardef(ns); agenr(ns, &nodl, N); } else { - if(ns->op == ONAME && ns->class != PEXTERN) + if(ns->op == ONAME) gvardef(ns); agenr(ns, &nodl, N); agenr(n, &nodr, N); @@ -1575,7 +1575,7 @@ componentgen(Node *nr, Node *nl) switch(nl->type->etype) { case TARRAY: // componentgen for arrays. - if(nl->op == ONAME && nl->class != PEXTERN) + if(nl->op == ONAME) gvardef(nl); t = nl->type; if(!isslice(t)) { @@ -1626,7 +1626,7 @@ componentgen(Node *nr, Node *nl) goto yes; case TSTRING: - if(nl->op == ONAME && nl->class != PEXTERN) + if(nl->op == ONAME) gvardef(nl); nodl.xoffset += Array_array; nodl.type = ptrto(types[TUINT8]); @@ -1651,7 +1651,7 @@ componentgen(Node *nr, Node *nl) goto yes; case TINTER: - if(nl->op == ONAME && nl->class != PEXTERN) + if(nl->op == ONAME) gvardef(nl); nodl.xoffset += Array_array; nodl.type = ptrto(types[TUINT8]); @@ -1676,7 +1676,7 @@ componentgen(Node *nr, Node *nl) goto yes; case TSTRUCT: - if(nl->op == ONAME && nl->class != PEXTERN) + if(nl->op == ONAME) gvardef(nl); loffset = nodl.xoffset; roffset = nodr.xoffset; diff --git a/src/cmd/8g/cgen.c b/src/cmd/8g/cgen.c index dc2350f4915..825c360de42 100644 --- a/src/cmd/8g/cgen.c +++ b/src/cmd/8g/cgen.c @@ -1384,7 +1384,7 @@ componentgen(Node *nr, Node *nl) switch(nl->type->etype) { case TARRAY: - if(nl->op == ONAME && nl->class != PEXTERN) + if(nl->op == ONAME) gvardef(nl); nodl.xoffset += Array_array; nodl.type = ptrto(nl->type->type); @@ -1419,7 +1419,7 @@ componentgen(Node *nr, Node *nl) goto yes; case TSTRING: - if(nl->op == ONAME && nl->class != PEXTERN) + if(nl->op == ONAME) gvardef(nl); nodl.xoffset += Array_array; nodl.type = ptrto(types[TUINT8]); @@ -1444,7 +1444,7 @@ componentgen(Node *nr, Node *nl) goto yes; case TINTER: - if(nl->op == ONAME && nl->class != PEXTERN) + if(nl->op == ONAME) gvardef(nl); nodl.xoffset += Array_array; nodl.type = ptrto(types[TUINT8]);