From ebf42035b76acad4c5f58b7904750b7fb0b25a42 Mon Sep 17 00:00:00 2001 From: Russ Cox Date: Wed, 13 Aug 2014 14:52:01 -0400 Subject: [PATCH] [dev.power64] runtime: fix newstackcall moreframesize is a uint32, not a uint64. LGTM=minux R=minux CC=golang-codereviews https://golang.org/cl/124310043 --- src/pkg/runtime/asm_power64x.s | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pkg/runtime/asm_power64x.s b/src/pkg/runtime/asm_power64x.s index 59c7a9eb5a..e530e704ef 100644 --- a/src/pkg/runtime/asm_power64x.s +++ b/src/pkg/runtime/asm_power64x.s @@ -284,7 +284,7 @@ TEXT runtime·newstackcall(SB), NOSPLIT, $-8-20 MOVD R8, m_moreargp(R5) MOVW R9, m_moreargsize(R5) MOVD $1, R10 - MOVD R10, m_moreframesize(R5) + MOVW R10, m_moreframesize(R5) // call newstack on m->g0's stack MOVD m_g0(R5), g -- 2.50.0