Commit cb15bbe7 authored by Ken Thompson's avatar Ken Thompson

bug in stack size used in

extending segmented stack

R=r
OCL=27319
CL=27319
parent 78edbfdc
......@@ -37,7 +37,7 @@ argsize(void)
int32 s;
//print("t=%T\n", thisfn);
s = 0;
s = align(0, thisfn->link, Aarg0);
for(t=thisfn->down; t!=T; t=t->down) {
switch(t->etype) {
case TVOID:
......
This diff is collapsed.
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