Commit 78fc888e authored by Russ Cox's avatar Russ Cox

another [] fix

R=ken
OCL=21566
CL=21566
parent 92f74ca7
...@@ -962,7 +962,7 @@ loop: ...@@ -962,7 +962,7 @@ loop:
tempname(nvar, ptrto(n->left->type)); tempname(nvar, ptrto(n->left->type));
nnew = nod(ONEW, N, N); nnew = nod(ONEW, N, N);
nnew->type = nvar->type; nnew->type = n->left->type;
nnew = newcompat(nnew); nnew = newcompat(nnew);
nas = nod(OAS, nvar, nnew); nas = nod(OAS, nvar, nnew);
......
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