From fa6375ea47ce054d5f1d93a4a1fe7efe2e293991 Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Wed, 26 Feb 2014 07:37:10 -0800 Subject: [PATCH] cmd/6g, cmd/8g: simplify calls to gvardef The gvardef function does nothing if n->class == PEXTERN, so we don't need to test for that before calling it. This makes the 6g/8g code more like the 5g code and clarifies that the cases that do not test for n->class != PEXTERN are not buggy. LGTM=rsc R=rsc CC=golang-codereviews https://golang.org/cl/68900044 --- src/cmd/6g/cgen.c | 12 ++++++------ src/cmd/8g/cgen.c | 6 +++--- 2 files changed, 9 insertions(+), 9 deletions(-) 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]);