Commit 5e5476c2 authored by Russ Cox's avatar Russ Cox

6c: byte* - byte* should be int64, not int32.

R=ken
OCL=24507
CL=24507
parent 77ccfb09
...@@ -722,7 +722,7 @@ arith(Node *n, int f) ...@@ -722,7 +722,7 @@ arith(Node *n, int f)
if(w < 1 || n->left->type->link == T || n->left->type->link->width < 1) if(w < 1 || n->left->type->link == T || n->left->type->link->width < 1)
goto bad; goto bad;
n->type = types[ewidth[TIND] <= ewidth[TLONG]? TLONG: TVLONG]; 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 = new1(OXXX, Z, Z);
*n1 = *n; *n1 = *n;
n->op = OCAST; n->op = OCAST;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment