diff options
| author | Russ Cox <rsc@golang.org> | 2014-08-24 14:04:10 -0400 |
|---|---|---|
| committer | Russ Cox <rsc@golang.org> | 2014-08-24 14:04:10 -0400 |
| commit | 22af2b8ee0194f952262a63e69ef1e9c5a638ac8 (patch) | |
| tree | ff3da5010acfd41bfc0fa19c9d9f07c85c2d6f8e /src/pkg/runtime | |
| parent | a6950fe0f9c23fe681109db746038092b5a04728 (diff) | |
| download | go-22af2b8ee0194f952262a63e69ef1e9c5a638ac8.tar.xz | |
runtime: fix arm build
TBR=dvyukov
CC=golang-codereviews
https://golang.org/cl/131150043
Diffstat (limited to 'src/pkg/runtime')
| -rw-r--r-- | src/pkg/runtime/asm_arm.s | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pkg/runtime/asm_arm.s b/src/pkg/runtime/asm_arm.s index 4e46767223..07b99262bb 100644 --- a/src/pkg/runtime/asm_arm.s +++ b/src/pkg/runtime/asm_arm.s @@ -652,8 +652,8 @@ TEXT runtime·abort(SB),NOSPLIT,$-4-0 MOVW (R0), R1 TEXT runtime·gocputicks(SB),NOSPLIT,$4-8 - ADD $8, SP, R0 - MOVW R0, 0(SP) + MOVW $ret_lo+0(FP), R0 + MOVW R0, 4(R13) BL runtime·cputicks(SB) RET |
