Commit 8022a1a5 authored by Russ Cox's avatar Russ Cox

cmd/gc: mark output of typename as type-checked

R=ken2
CC=golang-dev
https://golang.org/cl/6302051
parent c8fac7b9
...@@ -640,6 +640,7 @@ typename(Type *t) ...@@ -640,6 +640,7 @@ typename(Type *t)
n->ullman = 1; n->ullman = 1;
n->class = PEXTERN; n->class = PEXTERN;
n->xoffset = 0; n->xoffset = 0;
n->typecheck = 1;
s->def = n; s->def = n;
signatlist = list(signatlist, typenod(t)); signatlist = list(signatlist, typenod(t));
...@@ -649,6 +650,7 @@ typename(Type *t) ...@@ -649,6 +650,7 @@ typename(Type *t)
n->type = ptrto(s->def->type); n->type = ptrto(s->def->type);
n->addable = 1; n->addable = 1;
n->ullman = 2; n->ullman = 2;
n->typecheck = 1;
return n; return n;
} }
......
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