1
0
mirror of https://github.com/golang/go synced 2024-10-03 06:21:21 -06:00

arm: fix build

Effectively reverts https://code.google.com/p/go/source/detail?r=8c52477401ad
Should make ARM build pass again, but untested.
Probably still bugs involving reflect.call somewhere.

R=ken2
CC=golang-dev
https://golang.org/cl/2416042
This commit is contained in:
Russ Cox 2010-10-11 23:58:51 -04:00
parent a3e971d355
commit ded12ee4b5

View File

@ -797,7 +797,7 @@ newstack(void)
label.sp = sp;
label.pc = (byte*)·lessstack;
label.g = m->curg;
gogocall(&label, m->morepc, 4);
gogocall(&label, m->morepc, 0);
*(int32*)345 = 123; // never return
}