diff options
author | Russ Cox <rsc@golang.org> | 2009-08-05 00:42:44 -0700 |
---|---|---|
committer | Russ Cox <rsc@golang.org> | 2009-08-05 00:42:44 -0700 |
commit | 522168aad55bd4a03563605c213a0a9c35afc26e (patch) | |
tree | 8892ac9dfa9deb1c105e24209e662f966c2bfdef /src/cmd/gc/subr.c | |
parent | 15cd0fd71130a0b5befef0a6fb5b5d7ff0b76b8d (diff) | |
download | golang-522168aad55bd4a03563605c213a0a9c35afc26e.tar.gz |
delay := processing
R=ken
OCL=32772
CL=32772
Diffstat (limited to 'src/cmd/gc/subr.c')
-rw-r--r-- | src/cmd/gc/subr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmd/gc/subr.c b/src/cmd/gc/subr.c index 9ed434b58..71217d8af 100644 --- a/src/cmd/gc/subr.c +++ b/src/cmd/gc/subr.c @@ -582,7 +582,7 @@ dodump(Node *n, int dep) print("%O-ntype\n", n->op); dodump(n->ntype, dep+1); } - if(n->defn != nil) { + if(n->defn != nil && n->defn->op != OAS && n->defn->op != OAS2) { indent(dep); print("%O-defn\n", n->op); dodump(n->defn, dep+1); |