1
0
mirror of https://github.com/golang/go synced 2024-11-25 03:27:58 -07:00

cc: nit: silence comment warnings

R=golang-dev, r, r
CC=golang-dev
https://golang.org/cl/4648043
This commit is contained in:
Dave Cheney 2011-06-19 13:58:08 +10:00 committed by Rob Pike
parent 26b6a97c15
commit cbb2d8e20e
3 changed files with 2 additions and 3 deletions

View File

@ -1544,7 +1544,7 @@ sugen(Node *n, Node *nn, int32 w)
nod0.addable = 0; nod0.addable = 0;
nod0.right = l; nod0.right = l;
/* prtree(&nod0, "hand craft"); /* */ // prtree(&nod0, "hand craft");
cgen(&nod0, Z); cgen(&nod0, Z);
} }
break; break;

View File

@ -1581,7 +1581,7 @@ sugen(Node *n, Node *nn, int32 w)
nod0.addable = 0; nod0.addable = 0;
nod0.right = l; nod0.right = l;
/* prtree(&nod0, "hand craft"); /* */ // prtree(&nod0, "hand craft");
cgen(&nod0, Z); cgen(&nod0, Z);
} }
break; break;

View File

@ -1378,7 +1378,6 @@ tmerge(Type *t1, Sym *s)
Type *ta, *tb, *t2; Type *ta, *tb, *t2;
t2 = s->type; t2 = s->type;
/*print("merge %T; %T\n", t1, t2);/**/
for(;;) { for(;;) {
if(t1 == T || t2 == T || t1 == t2) if(t1 == T || t2 == T || t1 == t2)
break; break;