From 92254d4463efb5c3a91ccd6d62abe3f7587a145a Mon Sep 17 00:00:00 2001 From: Dmitriy Vyukov Date: Mon, 12 Aug 2013 21:36:33 +0400 Subject: runtime: fix ARM assembly formatting R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/12702048 --- src/pkg/runtime/sys_linux_arm.s | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/pkg/runtime/sys_linux_arm.s') diff --git a/src/pkg/runtime/sys_linux_arm.s b/src/pkg/runtime/sys_linux_arm.s index 3e3709f92d..0e540f1c84 100644 --- a/src/pkg/runtime/sys_linux_arm.s +++ b/src/pkg/runtime/sys_linux_arm.s @@ -371,7 +371,7 @@ casagain: MOVW new+8(FP), R1 BL cas<>(SB) BCC cascheck - MOVW $1, R0 + MOVW $1, R0 RET cascheck: // Kernel lies; double-check. @@ -380,7 +380,7 @@ cascheck: MOVW 0(R2), R3 CMP R0, R3 BEQ casagain - MOVW $0, R0 + MOVW $0, R0 RET TEXT runtime·casp(SB),NOSPLIT,$0 @@ -439,5 +439,5 @@ TEXT runtime·closeonexec(SB),NOSPLIT,$0 MOVW $2, R1 // F_SETFD MOVW $1, R2 // FD_CLOEXEC MOVW $SYS_fcntl, R7 - SWI $0 + SWI $0 RET -- cgit v1.3-5-g9baa