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

gc: fix alignment on non-amd64

R=ken2
CC=golang-dev
https://golang.org/cl/870041
parent f67c90f9
...@@ -618,6 +618,6 @@ argsize(Type *t) ...@@ -618,6 +618,6 @@ argsize(Type *t)
fp = funcnext(&save); fp = funcnext(&save);
} }
w = (w+7) & ~7; w = (w+widthptr-1) & ~(widthptr-1);
return w; return w;
} }
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