]> Cypherpunks repositories - gostls13.git/commitdiff
6c: byte* - byte* should be int64, not int32.
authorRuss Cox <rsc@golang.org>
Fri, 6 Feb 2009 03:09:04 +0000 (19:09 -0800)
committerRuss Cox <rsc@golang.org>
Fri, 6 Feb 2009 03:09:04 +0000 (19:09 -0800)
R=ken
OCL=24507
CL=24507

src/cmd/cc/sub.c

index 171c75232f40a1c417a2f23e980adbc21b7b2443..cad5eda729f138563864a46b3ecb380ed094d07b 100644 (file)
@@ -722,7 +722,7 @@ arith(Node *n, int f)
                if(w < 1 || n->left->type->link == T || n->left->type->link->width < 1)
                        goto bad;
                n->type = types[ewidth[TIND] <= ewidth[TLONG]? TLONG: TVLONG];
-               if(1 && ewidth[TIND] > ewidth[TLONG]){
+               if(0 && ewidth[TIND] > ewidth[TLONG]){
                        n1 = new1(OXXX, Z, Z);
                        *n1 = *n;
                        n->op = OCAST;