summaryrefslogtreecommitdiff
path: root/src/cmd/gc/subr.c
diff options
context:
space:
mode:
authorKen Thompson <ken@golang.org>2009-09-05 20:32:24 -0700
committerKen Thompson <ken@golang.org>2009-09-05 20:32:24 -0700
commit3e1759a758d14be6e09f7241feb19e37a2258ad4 (patch)
tree3e030b4eb47778c52614ffdb1441d94d396cb241 /src/cmd/gc/subr.c
parent4bd5147e35a0e4bd529a1ca2ae7b31fc9f0ab47e (diff)
downloadgolang-3e1759a758d14be6e09f7241feb19e37a2258ad4.tar.gz
composit literals
plateau - more to come R=rsc OCL=34413 CL=34413
Diffstat (limited to 'src/cmd/gc/subr.c')
-rw-r--r--src/cmd/gc/subr.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/cmd/gc/subr.c b/src/cmd/gc/subr.c
index 1cc568f4b..7ef113d2f 100644
--- a/src/cmd/gc/subr.c
+++ b/src/cmd/gc/subr.c
@@ -866,6 +866,9 @@ Jconv(Fmt *fp)
if(n->typecheck != 0)
fmtprint(fp, " tc(%d)", n->typecheck);
+ if(n->dodata != 0)
+ fmtprint(fp, " dd(%d)", n->dodata);
+
return 0;
}