Commit 81b325db authored by Ken Thompson's avatar Ken Thompson

a,b := fun()

SVN=125998
parent 787cdc65
......@@ -1231,10 +1231,8 @@ eqtype(Type *t1, Type *t2, int d)
return 1;
if(t1 == T || t2 == T)
return 0;
if(t1->etype != t2->etype)
return 0;
switch(t1->etype) {
case TINTER:
case TSTRUCT:
......
......@@ -224,7 +224,6 @@ loop:
l = n->left;
r = n->right;
walktype(l, Elv);
if(l == N || r == N)
goto ret;
......@@ -1749,7 +1748,7 @@ multi:
l = listfirst(&savel, &nl);
t = structfirst(&saver, getoutarg(t));
while(l != N) {
a = old2new(l, t);
a = old2new(l, t->type);
if(n == N)
n = a;
else
......
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