Commit 07e87885 authored by Russ Cox's avatar Russ Cox

cmd/6c: fix build

copy+paste error while cleaning up CL 7303099 before submit

R=ken2
CC=golang-dev
https://golang.org/cl/7308104
parent 139448fe
......@@ -626,7 +626,7 @@ align(int32 i, Type *t, int op, int32 *maxalign)
int32
maxround(int32 max, int32 v)
{
v = xround(v, SZ_LONG);
v = xround(v, SZ_VLONG);
if(v > max)
return v;
return max;
......
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