Commit ebf42035 authored by Russ Cox's avatar Russ Cox

[dev.power64] runtime: fix newstackcall

moreframesize is a uint32, not a uint64.

LGTM=minux
R=minux
CC=golang-codereviews
https://golang.org/cl/124310043
parent 6e73ae88
...@@ -284,7 +284,7 @@ TEXT runtime·newstackcall(SB), NOSPLIT, $-8-20 ...@@ -284,7 +284,7 @@ TEXT runtime·newstackcall(SB), NOSPLIT, $-8-20
MOVD R8, m_moreargp(R5) MOVD R8, m_moreargp(R5)
MOVW R9, m_moreargsize(R5) MOVW R9, m_moreargsize(R5)
MOVD $1, R10 MOVD $1, R10
MOVD R10, m_moreframesize(R5) MOVW R10, m_moreframesize(R5)
// call newstack on m->g0's stack // call newstack on m->g0's stack
MOVD m_g0(R5), g MOVD m_g0(R5), g
......
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