1
0
mirror of https://github.com/golang/go synced 2024-09-25 03:10:12 -06:00

gc: handle printing of string/arrayrune conversions

Fixes #2714.

R=rsc
CC=golang-dev
https://golang.org/cl/5540066
This commit is contained in:
Luuk van Dijk 2012-01-18 09:52:16 +01:00
parent 436b37d885
commit 18ee75ec88

View File

@ -943,6 +943,7 @@ static int opprec[] = {
[OAPPEND] = 8,
[OARRAYBYTESTR] = 8,
[OARRAYLIT] = 8,
[OARRAYRUNESTR] = 8,
[OCALLFUNC] = 8,
[OCALLINTER] = 8,
[OCALLMETH] = 8,
@ -969,6 +970,8 @@ static int opprec[] = {
[OPRINT] = 8,
[ORECV] = 8,
[ORUNESTR] = 8,
[OSTRARRAYBYTE] = 8,
[OSTRARRAYRUNE] = 8,
[OSTRUCTLIT] = 8,
[OTARRAY] = 8,
[OTCHAN] = 8,
@ -1214,7 +1217,9 @@ exprfmt(Fmt *f, Node *n, int prec)
case OCONVIFACE:
case OCONVNOP:
case OARRAYBYTESTR:
case OARRAYRUNESTR:
case OSTRARRAYBYTE:
case OSTRARRAYRUNE:
case ORUNESTR:
if(n->type == T || n->type->sym == S)
return fmtprint(f, "(%T)(%N)", n->type, n->left);
@ -1372,7 +1377,8 @@ nodedump(Fmt *fp, Node *n)
indent(fp);
}
}
fmtprint(fp, "[%p]", n);
// fmtprint(fp, "[%p]", n);
switch(n->op) {
default: