From: Russ Cox Date: Tue, 4 Mar 2014 19:03:39 +0000 (-0500) Subject: runtime: fix arm build (B not JMP) X-Git-Tag: go1.3beta1~484 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=f884e15aabcdf547eb8c8a10e02e6bddc801e7e8;p=gostls13.git runtime: fix arm build (B not JMP) TBR=dvyukov CC=golang-codereviews https://golang.org/cl/71060046 --- diff --git a/src/pkg/runtime/asm_arm.s b/src/pkg/runtime/asm_arm.s index aa171d7be9..3aed51f490 100644 --- a/src/pkg/runtime/asm_arm.s +++ b/src/pkg/runtime/asm_arm.s @@ -215,7 +215,7 @@ TEXT runtime·morestack(SB),NOSPLIT,$-4-0 TEXT runtime·morestack_noctxt(SB),NOSPLIT,$-4-0 MOVW $0, R7 - JMP runtime·morestack(SB) + B runtime·morestack(SB) // Called from panic. Mimics morestack, // reuses stack growth code to create a frame