Commit de663b2d authored by Kai Backman's avatar Kai Backman

with rsc: argsize rounding to 8 smashes stack data on 32bit machines.

R=rsc
http://go/go-review/1024011
parent 9bbbe7d3
......@@ -52,7 +52,11 @@ argsize(void)
}
//print(" %d %T\n", s, t);
}
return (s+7) & ~7;
if(thechar == '6')
s = (s+7) & ~7;
else
s = (s+3) & ~3;
return s;
}
void
......
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