From bd6404a4cc90aec9c9599ae97cd244dc09088588 Mon Sep 17 00:00:00 2001 From: Russ Cox Date: Thu, 15 Mar 2012 17:40:17 -0400 Subject: [PATCH] runtime: fix arm build TBR=golang-dev CC=golang-dev https://golang.org/cl/5832047 --- src/pkg/runtime/asm_arm.s | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/pkg/runtime/asm_arm.s b/src/pkg/runtime/asm_arm.s index 9c36ba0d69..423fda7a0c 100644 --- a/src/pkg/runtime/asm_arm.s +++ b/src/pkg/runtime/asm_arm.s @@ -315,8 +315,8 @@ casfail: RET TEXT runtime·stackguard(SB),7,$0 - MOVL R13, R1 - MOVL g_stackguard(g), R2 - MOVL R1, sp+0(FP) - MOVL R2, limit+4(FP) + MOVW R13, R1 + MOVW g_stackguard(g), R2 + MOVW R1, sp+0(FP) + MOVW R2, limit+4(FP) RET -- 2.51.0