summaryrefslogtreecommitdiff
path: root/src/cmd/gc/go.h
diff options
context:
space:
mode:
authorKen Thompson <ken@golang.org>2010-03-05 20:16:04 -0800
committerKen Thompson <ken@golang.org>2010-03-05 20:16:04 -0800
commit5842cfc85c6f8fc4d21a8eed092e072c31e8d57f (patch)
tree762fd17775da62a5871b43cb2d8e2fc5061e01fa /src/cmd/gc/go.h
parent6cb89cd7be227e578300ee8097f9dfbf362bee53 (diff)
downloadgolang-5842cfc85c6f8fc4d21a8eed092e072c31e8d57f.tar.gz
6g complex type usable
8g and 5g have stubs to ignore complex R=rsc CC=golang-dev http://codereview.appspot.com/257042
Diffstat (limited to 'src/cmd/gc/go.h')
-rw-r--r--src/cmd/gc/go.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/cmd/gc/go.h b/src/cmd/gc/go.h
index cbcdc9c39..a301a756c 100644
--- a/src/cmd/gc/go.h
+++ b/src/cmd/gc/go.h
@@ -384,6 +384,7 @@ enum
ORUNESTR,
OSELRECV,
OIOTA,
+ OREAL, OIMAG, OCMPLX,
// stmts
OBLOCK,
@@ -892,6 +893,7 @@ NodeList* listtreecopy(NodeList*);
int isselect(Node*);
Node* staticname(Type*);
int iscomposite(Type*);
+int cplxsubtype(int);
Node* callnew(Type*);
Node* safeexpr(Node*, NodeList**);
int is64(Type*);