From ded12ee4b5062dea93ef7a9a4f31fd6f189f4fa5 Mon Sep 17 00:00:00 2001 From: Russ Cox Date: Mon, 11 Oct 2010 23:58:51 -0400 Subject: [PATCH] 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 --- src/pkg/runtime/proc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pkg/runtime/proc.c b/src/pkg/runtime/proc.c index 3688a1c235..24c6af06de 100644 --- a/src/pkg/runtime/proc.c +++ b/src/pkg/runtime/proc.c @@ -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 }