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

[dev.power64] runtime: fix newstackcall

moreframesize is a uint32, not a uint64.

LGTM=minux
R=minux
CC=golang-codereviews
https://golang.org/cl/124310043
This commit is contained in:
Russ Cox 2014-08-13 14:52:01 -04:00
parent 6e73ae88b5
commit ebf42035b7

View File

@ -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