Commit dae80386 authored by Russ Cox's avatar Russ Cox

runtime: fix nacl/amd64p32 build

BP is not a legal register on nacl.

TBR=iant
CC=golang-codereviews
https://golang.org/cl/140980043
parent b143feb1
......@@ -185,8 +185,8 @@ TEXT runtime·onM(SB), NOSPLIT, $0-4
CMPL AX, DX
JEQ onm
MOVL m_curg(BX), BP
CMPL AX, BP
MOVL m_curg(BX), R8
CMPL AX, R8
JEQ oncurg
// Not g0, not curg. Must be gsignal, but that's not allowed.
......
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