From: Russ Cox Date: Fri, 6 Feb 2009 03:09:04 +0000 (-0800) Subject: 6c: byte* - byte* should be int64, not int32. X-Git-Tag: weekly.2009-11-06~2225 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=5e5476c2feebab6582dba4db1e47d8d02196bb14;p=gostls13.git 6c: byte* - byte* should be int64, not int32. R=ken OCL=24507 CL=24507 --- diff --git a/src/cmd/cc/sub.c b/src/cmd/cc/sub.c index 171c75232f..cad5eda729 100644 --- a/src/cmd/cc/sub.c +++ b/src/cmd/cc/sub.c @@ -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;